aboutsummaryrefslogtreecommitdiff
path: root/.pandoc/bold-code.lua
diff options
context:
space:
mode:
Diffstat (limited to '.pandoc/bold-code.lua')
-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