diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-04-23 17:48:14 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-04-23 17:48:14 +0200 |
commit | 424c5a281282451b224da0ba26e35fb03bf2ecf5 (patch) | |
tree | 403d742f20a60aa00373b3203837383d1e01ade5 | |
parent | dd8379e545b4beb6611a8152bca87e9276dde797 (diff) |
remove hello world plugin test
-rw-r--r-- | docs/makefile | 1 | ||||
-rw-r--r-- | docs/plugin/helloworld.rb | 13 |
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 - |