summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Rackham <srackham@methods.co.nz>2012-06-11 13:44:16 +1200
committerStuart Rackham <srackham@methods.co.nz>2012-06-11 13:44:16 +1200
commit73025dcb54e6dc2849a9d413c829ab2206501516 (patch)
tree50ab0a39bfa5df9a8d68e96473d2b3adaf9ea4c4
parent3e9c1e04bd5aa1f42d1cbeeaa280e6831570c586 (diff)
downloadasciidoc-73025dcb54e6dc2849a9d413c829ab2206501516.tar.gz
Added FAQ 'How can I place a footnote immediately following quoted text?'
See https://groups.google.com/group/asciidoc/browse_thread/thread/961a957ab5872ebf
-rw-r--r--doc/faq.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/faq.txt b/doc/faq.txt
index 641acbc..db64eae 100644
--- a/doc/faq.txt
+++ b/doc/faq.txt
@@ -1342,3 +1342,17 @@ and the AsciiDoc source marked by:
normal text [f2]#special font is like this# and back to normal
Thanks to Antonio Borneo for this answer.
+
+
+== How can I place a footnote immediately following quoted text?
+A closing quote is not recognised if it is immediately followed by a
+letter (the 'f' in 'footnote' in the following example):
+
+ ``Double-quoted text''footnote:[Lorum ipsum...]
+
+A workaround is to put a zero-width space between the trailing quote
+and the footnote (the `{empty}` attribute would also work), for
+example:
+
+ ``Double-quoted text''{zwsp}footnote:[Lorum ipsum...]
+