New language: roff
This commit is contained in:
parent
ffab644ea7
commit
83697c7de0
|
@ -947,6 +947,32 @@ main:
|
|||
.data
|
||||
message:
|
||||
.string "Hello, world!\\n"
|
||||
`,
|
||||
},
|
||||
roff: {
|
||||
aliases: [
|
||||
"groff",
|
||||
"nroff",
|
||||
"troff",
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"man",
|
||||
"manual",
|
||||
],
|
||||
name: "roff",
|
||||
monacoLang: "plaintext",
|
||||
main: "main.roff",
|
||||
compile: "pandoc main.roff -f man -o main.html",
|
||||
run: "prettier --no-config main.html",
|
||||
template: `.PP
|
||||
Hello, world!
|
||||
`,
|
||||
},
|
||||
ruby: {
|
||||
|
|
|
@ -68,6 +68,9 @@ pandoc
|
|||
gcc-riscv64-linux-gnu
|
||||
qemu-user-static
|
||||
|
||||
# roff
|
||||
pandoc
|
||||
|
||||
# Ruby
|
||||
ruby
|
||||
ruby-dev
|
||||
|
|
Loading…
Reference in New Issue