aboutsummaryrefslogtreecommitdiff
path: root/groff.outlang
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2024-07-31 14:44:23 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2024-07-31 14:44:23 +0200
commit171e7a112b85c103358bf9e45f60a35c71d298c3 (patch)
tree44f5d81215eebdde1205b5e58adf0054ff1d928b /groff.outlang
parent5db9a7cbae982a68e99f80f77abebef6a873e6b4 (diff)
downloadgroff-tools-171e7a112b85c103358bf9e45f60a35c71d298c3.tar.gz
added Lua-based HIGHLIGHT macro and groff-ms.outlang for ms macros
* the highlight.sno and highlight.lua macros are considerde deprecated in favor of pygments-groff.py.
Diffstat (limited to 'groff.outlang')
-rw-r--r--groff.outlang72
1 files changed, 0 insertions, 72 deletions
diff --git a/groff.outlang b/groff.outlang
deleted file mode 100644
index 60e217e..0000000
--- a/groff.outlang
+++ /dev/null
@@ -1,72 +0,0 @@
-extension "mom"
-
-doctemplate
-"
-.NEWCOLOR green RGB #33CC00
-.NEWCOLOR red RGB #FF0000
-.NEWCOLOR darkred RGB #990000
-.NEWCOLOR blue RGB #0000FF
-.NEWCOLOR brown RGB #9A1900
-.NEWCOLOR pink RGB #CC33CC
-.NEWCOLOR yellow RGB #FFCC00
-.NEWCOLOR cyan RGB #66FFFF
-.NEWCOLOR purple RGB #993399
-.NEWCOLOR orange RGB #FF6600
-.NEWCOLOR brightorange RGB #FF9900
-.NEWCOLOR brightgreen RGB #33FF33
-.NEWCOLOR darkgreen RGB #009900
-.NEWCOLOR black RGB #000000
-.NEWCOLOR teal RGB #008080
-.NEWCOLOR gray RGB #808080
-.NEWCOLOR darkblue RGB #000080
-.NEWCOLOR white RGB #FFFFFF
-"
-
-"
-"
-end
-
-# NOTE: There must be a Typewrite Bold style
-# I'm using the Latin Modern fonts that have this style.
-# Otherwise you could use Mom's \*[BOLDER] escape.
-
-bold "\f[TTB]$text\fP"
-italics "\f[TTI]$text\fP"
-# FIXME: no way to implement underline generically
-#underline
-
-#notfixed "\fR$text\fP"
-#fixed "\fR$text\fP"
-
-color "\*[$style]$text\*[black]"
-
-colormap
-"green" "green"
-"red" "red"
-"darkred" "darkred"
-"blue" "blue"
-"brown" "brown"
-"pink" "pink"
-"yellow" "yellow"
-"cyan" "cyan"
-"purple" "purple"
-"orange" "orange"
-"brightorange" "brightorange"
-"brightgreen" "brightgreen"
-"darkgreen" "darkgreen"
-"black" "black"
-"teal" "teal"
-"gray" "gray"
-"darkblue" "darkblue"
-"white" "white"
-default "black"
-end
-
-# lines may be empty, so begin them with the non-spacing \&
-# also, this allows "." and "'" at the beginning of the line
-lineprefix "\&"
-
-translations
-"\\" "\\e"
-#"\t" " "
-end