diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2026-01-10 14:36:04 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2026-01-10 14:36:04 -0500 |
| commit | e6e655f8374136b26fe692c3d176b9a69423074f (patch) | |
| tree | 6d4a152f63018dda92270deb3ac09aa13c212a94 | |
| parent | 6afa2aefebc13d51e24cbde10fc7e98b6140e740 (diff) | |
| parent | a36f149d0837f4424aeda1a1853f08c27aeafa44 (diff) | |
Merge branch 'dev' into static-dependenciesstatic-dependencies
| -rw-r--r-- | .pandoc/bold-code.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.pandoc/bold-code.lua b/.pandoc/bold-code.lua new file mode 100644 index 00000000..02ed1891 --- /dev/null +++ b/.pandoc/bold-code.lua @@ -0,0 +1,9 @@ +-- Convert code to bold +function Code(el) + return pandoc.Strong(el.text) +end + +-- Convert code blocks to bold and indented +function CodeBlock(el) + return pandoc.BlockQuote({pandoc.Para(pandoc.Strong(el.text))}) +end |
