New language: roff
This commit is contained in:
parent
ffab644ea7
commit
83697c7de0
|
@ -947,6 +947,32 @@ main:
|
||||||
.data
|
.data
|
||||||
message:
|
message:
|
||||||
.string "Hello, world!\\n"
|
.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: {
|
ruby: {
|
||||||
|
|
|
@ -68,6 +68,9 @@ pandoc
|
||||||
gcc-riscv64-linux-gnu
|
gcc-riscv64-linux-gnu
|
||||||
qemu-user-static
|
qemu-user-static
|
||||||
|
|
||||||
|
# roff
|
||||||
|
pandoc
|
||||||
|
|
||||||
# Ruby
|
# Ruby
|
||||||
ruby
|
ruby
|
||||||
ruby-dev
|
ruby-dev
|
||||||
|
|
Loading…
Reference in New Issue