New language: reStructuredText

This commit is contained in:
Radon Rosborough 2020-07-11 12:12:48 -06:00
parent 2efd97adb6
commit ef7291da04
2 changed files with 13 additions and 0 deletions

View File

@ -904,6 +904,16 @@ main :-
compile: "bsc main.re > main.js",
run: "NODE_PATH=/usr/lib/node_modules node main.js",
template: `print_string("Hello, world!\\n")
`,
},
restructuredtext: {
aliases: ["rst"],
name: "reStructuredText",
monacoLang: "restructuredtext",
main: "main.rst",
compile: "pandoc main.rst -o main.html",
run: "prettier --no-config main.html",
template: `Hello, world!
`,
},
riscv: {

View File

@ -58,6 +58,9 @@ r-base
# Racket
racket
# reStructuredText
pandoc
# RISC-V
gcc-riscv64-linux-gnu
qemu-user-static