mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
61 lines
1.4 KiB
Plaintext
61 lines
1.4 KiB
Plaintext
# AsciiDoc configuration file
|
|
# Copyright (c) Jonas Fonseca <fonseca@diku.dk>, 2006
|
|
|
|
# This file sets the following ELinks specific AsciiDoc macros:
|
|
#
|
|
# General purpose:
|
|
# - man:page[section]: which is used for linking between ELinks manpages.
|
|
|
|
[replacements]
|
|
(^|[^-])--($|[^-])=\1--\2
|
|
|
|
# Some macros can have optional {0} value, that is what
|
|
# the {0%...} and {0#...} handles.
|
|
|
|
#############################################################################
|
|
# DocBook
|
|
|
|
ifdef::backend-docbook[]
|
|
|
|
# To be replaced later
|
|
[attributes]
|
|
squote=@squote@
|
|
|
|
# No interlinking between elinks manpages
|
|
[man-inlinemacro]
|
|
{0%{target}}
|
|
{0#<citerefentry>}
|
|
{0#<refentrytitle>{target}</refentrytitle><manvolnum>{0}</manvolnum>}
|
|
{0#</citerefentry>}
|
|
|
|
# For manpages use less verbose linking
|
|
ifdef::doctype-manpage[]
|
|
[link-inlinemacro]
|
|
{0%<{target}>}
|
|
{0#{0} <{target}>}
|
|
|
|
[http-inlinemacro]
|
|
{0%<http:{target}>}
|
|
{0#{0} <http:{target}>}
|
|
|
|
[mailto-inlinemacro]
|
|
<{target}>
|
|
|
|
endif::doctype-manpage[]
|
|
endif::backend-docbook[]
|
|
|
|
#############################################################################
|
|
# XHTML11
|
|
|
|
ifdef::backend-xhtml11[]
|
|
|
|
[attributes]
|
|
squote='
|
|
|
|
# Use the man:[] macro to link between elinks manpages
|
|
[man-inlinemacro]
|
|
{eval:re.match("elinks", "{target}") != None}<a href="{target}.{0}.html">{target}({0})</a>
|
|
{eval:re.match("elinks", "{target}") == None}<b>{target}({0})</b>
|
|
|
|
endif::backend-xhtml11[]
|