diff options
author | Artem <artem@artem.(none)> | 2008-06-24 20:39:50 +0500 |
---|---|---|
committer | Artem <artem@artem.(none)> | 2008-06-24 20:39:50 +0500 |
commit | 2dbfcc0c510b46c9bfa288cb370b2d4f7fe7555d (patch) | |
tree | 3c4bc7c0532b98b42f6abfb53d92dd9ef57b0a7a /tests2/tm-cases-new/escapes.txt | |
parent | eede42cb87a74b1a91b360a218d05f9a5c703e55 (diff) | |
download | markdown-2dbfcc0c510b46c9bfa288cb370b2d4f7fe7555d.tar.gz markdown-2dbfcc0c510b46c9bfa288cb370b2d4f7fe7555d.tar.bz2 markdown-2dbfcc0c510b46c9bfa288cb370b2d4f7fe7555d.zip |
second commit
Diffstat (limited to 'tests2/tm-cases-new/escapes.txt')
-rw-r--r-- | tests2/tm-cases-new/escapes.txt | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/tests2/tm-cases-new/escapes.txt b/tests2/tm-cases-new/escapes.txt new file mode 100644 index 0000000..dbfc2b5 --- /dev/null +++ b/tests2/tm-cases-new/escapes.txt @@ -0,0 +1,65 @@ +# Backslash-escapes: basics + +\*\*don't shout\*\* + +\*don't emphasize\* + +\_literal underscores\_ + +\_\_more literal underscores\_\_ + +## This header has trailing hash marks \#\# + + +# Backslash-escapes: links + +This is not a \[link](/url/). + +This is a link, not an image link: \![link](/url/). + +Should this be an <http://autolink\> or not? +I'll ask on markdown-discuss. +I suspect PHP markdown is considering this NOT an autolink. + +This is not a [link definition\][link1] but [this is][link1]. + +[link1]: /url/ + + +# Backslash-escapse: code blocks + +In a code block: + + escapes should \*not\* be \_interpreted\_ + even \`backticks\` + + +# Backslash-escapse: code spans + +Getting backticks and backslash-escapes working correctly with +code spans can be tricky: + +`a normal code span` + +``need multiple backticks to include a literal ` backtick`` + +`` `use a leading space to start a code span with a backtick`` + +``use a trailing space to end a code span with a backtick` `` + +``backslash-escapes \(are\) \*not\* \`interpreted\` in a code span`` + +\``a code span prefixed with a literal backtick` + +\`not a code span\` + + +*Note A*: The `` (?!`) `` after the `\1` group in the +`_DoCodeSpans()/_do_code_spans()` regex is necessary to ensure that a backtick +doesn't match at the start of the code block (group `\2`) in an example like +this: + +- ``foo` + + + |