git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Disable asciidoc 8.4.1+ semantics for `{plus}` and friends
@ 2009-07-16 13:54 Thomas Rast
  2009-07-25 12:06 ` [PATCH resend] " Thomas Rast
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Rast @ 2009-07-16 13:54 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

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 <trast@student.ethz.ch>
---

I checked the output of 8.4.4 with ASCIIDOC8 and ASCIIDOC_NO_ROFF set.
I unfortunately cannot test if the extra attribute affects pre-8.4.1
versions.  (If it conflicts, we will have to introduce yet another
ASCIIDOC_* option, but I'm trying to avoid it.)


 Documentation/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Documentation/Makefile b/Documentation/Makefile
index 7a8037f..06b0c57 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -84,7 +84,7 @@ endif
 #
 
 ifdef ASCIIDOC8
-ASCIIDOC_EXTRA += -a asciidoc7compatible
+ASCIIDOC_EXTRA += -a asciidoc7compatible -a no-inline-literal
 endif
 ifdef DOCBOOK_XSL_172
 ASCIIDOC_EXTRA += -a git-asciidoc-no-roff
-- 
1.6.4.rc1.193.g17735.dirty

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-07-25 16:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-16 13:54 [PATCH] Disable asciidoc 8.4.1+ semantics for `{plus}` and friends Thomas Rast
2009-07-25 12:06 ` [PATCH resend] " Thomas Rast
2009-07-25 16:56   ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).