mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 15:45:03 -04:00
b3c6bdda38
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<name>\w(\w|-)*?):(?P<target>\S*?)(\[(?P<attrlist>.*?)\])= + +# Explicit so they can be nested. +(?su)[\\]?(?P<name>(http|https|ftp|file|mailto|callto|image|link)):(?P<target>\S*?)(\[(?P<attrlist>.*?)\])= + # Anchor: [[[id]]]. Bibliographic anchor. (?su)[\\]?\[\[\[(?P<attrlist>[\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 <dan@archlinux.org>
40 lines
910 B
Plaintext
40 lines
910 B
Plaintext
/////
|
|
vim:set ts=4 sw=4 syntax=asciidoc noet:
|
|
/////
|
|
libalpm(3)
|
|
==========
|
|
|
|
Name
|
|
----
|
|
libalpm - Arch Linux Package Management (ALPM) library
|
|
|
|
|
|
Synopsis
|
|
--------
|
|
For ease of access, the libalpm manual has been split up into several sections.
|
|
|
|
*TODO:* Yes, this man page needs a lot of work. Once we get around to doing
|
|
good Doxygen documentation, it will improve. We promise.
|
|
|
|
*alpm_databases*:: Database Functions
|
|
*alpm_interface*:: Interface Functions
|
|
*alpm_list*:: List Functions
|
|
*alpm_log*:: Logging Functions
|
|
*alpm_misc*:: Miscellaneous Functions
|
|
*alpm_packages*:: Package Functions
|
|
*alpm_sync*:: Sync Functions
|
|
*alpm_trans*:: Transaction Functions
|
|
|
|
|
|
Configuration
|
|
-------------
|
|
See linkman:pacman.conf[5] for more details on configuring libalpm using the
|
|
'pacman.conf' file.
|
|
|
|
|
|
See Also
|
|
--------
|
|
linkman:pacman[8], linkman:makepkg[8], linkman:pacman.conf[5]
|
|
|
|
include::footer.txt[]
|