fxn (owner)

Revisions

gist: 25934 Download_button fork
public
Description:
temptative asciidoc.conf for guides
Public Clone URL: git://gist.github.com/25934.git
Embed All Files: show embed
asciidoc.conf #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Asciidoc substitutes some characters by default, those are called
# "replacements" in the docs. For example => becomes a unicode arrow.
#
# We override replacements to allow copy & paste of source code.
 
[replacements]
 
# Ellipsis
(?<!\\)\.\.\.=...
\\\.\.\.=...
 
# -> right arrow
(?<!\\)->==->
\\->=->
 
# => right double arrow
(?<!\\)\=>==>
\\\=>==>
 
# <- left arrow
(?<!\\)<-=<-
\\<-=<-
 
# <= left double arrow
(?<!\\)<\==<=
\\<\==<=