diff options
Diffstat (limited to 'docbook/asciidoctor-macros/ws_utils.rb')
-rw-r--r-- | docbook/asciidoctor-macros/ws_utils.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docbook/asciidoctor-macros/ws_utils.rb b/docbook/asciidoctor-macros/ws_utils.rb new file mode 100644 index 0000000000..cff181cb15 --- /dev/null +++ b/docbook/asciidoctor-macros/ws_utils.rb @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: MIT +module WsUtils + def create_doc_links(parent, target, text) + if parent.document.basebackend? 'html' + parent.document.register :links, target + create_anchor(parent, text, type: :link, target: target).render.to_s + elsif parent.document.backend == 'manpage' + "\\fB#{text}" + else + bugtext + end + end +end |