aboutsummaryrefslogtreecommitdiff
path: root/.pandoc
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-21 21:52:12 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-21 21:52:12 -0400
commitc92e5eb1649ff35210e55e449c80d829eb0519ee (patch)
treee3539d043457259936a4fa5fdf476e19b92c3f4c /.pandoc
parentc2cebc9f076229d6aa06899523465f3890d9d657 (diff)
Move pandoc stuff into docs/
Diffstat (limited to '.pandoc')
-rw-r--r--.pandoc/bold-code.lua9
1 files changed, 0 insertions, 9 deletions
diff --git a/.pandoc/bold-code.lua b/.pandoc/bold-code.lua
deleted file mode 100644
index 02ed1891..00000000
--- a/.pandoc/bold-code.lua
+++ /dev/null
@@ -1,9 +0,0 @@
--- 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