Skip to content

Commit 71c020c

Browse files
trastgitster
authored andcommitted
Disable asciidoc 8.4.1+ semantics for {plus} and friends
asciidoc 8.4.1 changed the semantics of inline backtick quoting so that they disable parsing of inline constructs, i.e., Input: `{plus}` Pre 8.4.1: + Post 8.4.1: {plus} Fix this by defining the asciidoc attribute 'no-inline-literal' (which, per the 8.4.1 changelog, is the toggle to return to the old behaviour) when under ASCIIDOC8. Signed-off-by: Thomas Rast <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 6517452 commit 71c020c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Documentation/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ endif
8484
#
8585

8686
ifdef ASCIIDOC8
87-
ASCIIDOC_EXTRA += -a asciidoc7compatible
87+
ASCIIDOC_EXTRA += -a asciidoc7compatible -a no-inline-literal
8888
endif
8989
ifdef DOCBOOK_XSL_172
9090
ASCIIDOC_EXTRA += -a git-asciidoc-no-roff

0 commit comments

Comments
 (0)