New language: roff

This commit is contained in:
Radon Rosborough 2020-07-11 12:39:34 -06:00
parent ffab644ea7
commit 83697c7de0
2 changed files with 29 additions and 0 deletions

View File

@ -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: {

View File

@ -68,6 +68,9 @@ pandoc
gcc-riscv64-linux-gnu
qemu-user-static
# roff
pandoc
# Ruby
ruby
ruby-dev