From b3c6bdda38f7e370e1f80f02a61f1d3f08c1b57d Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 29 Dec 2007 00:24:15 -0600 Subject: doc: rename manlink macro to linkman Between AsciiDoc 8.2.2 and 8.2.3, the following change was made to the stock Asciidoc configuration: @@ -149,7 +153,10 @@ # Inline macros. # Backslash prefix required for escape processing. # (?s) re flag for line spanning. -(?su)[\\]?(?P\w(\w|-)*?):(?P\S*?)(\[(?P.*?)\])= + +# Explicit so they can be nested. +(?su)[\\]?(?P(http|https|ftp|file|mailto|callto|image|link)):(?P\S*?)(\[(?P.*?)\])= + # Anchor: [[[id]]]. Bibliographic anchor. (?su)[\\]?\[\[\[(?P[\w][\w-]*?)\]\]\]=anchor3 # Anchor: [[id,xreflabel]] This default regex now matches explicit values, and unfortunately in this case manlink was being matched by just 'link', causing the wrong inline macro template to be applied. By renaming the macro, we can avoid being matched by the wrong regex. Signed-off-by: Dan McGee --- doc/libalpm.3.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/libalpm.3.txt') diff --git a/doc/libalpm.3.txt b/doc/libalpm.3.txt index d8fb58e8..b7a892c7 100644 --- a/doc/libalpm.3.txt +++ b/doc/libalpm.3.txt @@ -28,12 +28,12 @@ good Doxygen documentation, it will improve. We promise. Configuration ------------- -See manlink:pacman.conf[5] for more details on configuring libalpm using the +See linkman:pacman.conf[5] for more details on configuring libalpm using the 'pacman.conf' file. See Also -------- -manlink:pacman[8], manlink:makepkg[8], manlink:pacman.conf[5] +linkman:pacman[8], linkman:makepkg[8], linkman:pacman.conf[5] include::footer.txt[] -- cgit v1.2.3-24-g4f1b