aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/makefile1
-rw-r--r--docs/plugin/helloworld.rb13
2 files changed, 0 insertions, 14 deletions
diff --git a/docs/makefile b/docs/makefile
index 452eddf..f175830 100644
--- a/docs/makefile
+++ b/docs/makefile
@@ -13,7 +13,6 @@ PDFDEPS += ./theme.yml
ASCIIDOCTOR_ARGS += --require asciidoctor-bibtex
ASCIIDOCTOR_ARGS += --require asciidoctor-pdf
-# ASCIIDOCTOR_ARGS += --require ./plugin/helloworld
ASCIIDOCTOR_ARGS += --require asciidoctor-interdoc-reftext
ASCIIDOCTOR_ARGS += --require asciidoctor-lists
ASCIIDOCTOR_ARGS += --backend pdf
diff --git a/docs/plugin/helloworld.rb b/docs/plugin/helloworld.rb
deleted file mode 100644
index 7bfc226..0000000
--- a/docs/plugin/helloworld.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-class HelloWorldMacro < Asciidoctor::Extensions::BlockMacroProcessor
- use_dsl
- named :helloworld
-
- def process parent, target, attrs
- return
- end
-end
-
-Asciidoctor::Extensions.register do
- block_macro HelloWorldMacro
-end
-