{"id":18879717,"url":"https://github.com/loilo/node-gfm-markdown-fixture","last_synced_at":"2026-01-26T19:37:37.634Z","repository":{"id":57250751,"uuid":"98316185","full_name":"loilo/node-gfm-markdown-fixture","owner":"loilo","description":"A fixture for reading npm's markdown rendering","archived":false,"fork":false,"pushed_at":"2017-07-25T14:36:43.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-31T15:39:35.205Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/loilo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-07-25T14:36:10.000Z","updated_at":"2017-07-25T14:36:10.000Z","dependencies_parsed_at":"2022-08-24T16:52:04.698Z","dependency_job_id":null,"html_url":"https://github.com/loilo/node-gfm-markdown-fixture","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loilo%2Fnode-gfm-markdown-fixture","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loilo%2Fnode-gfm-markdown-fixture/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loilo%2Fnode-gfm-markdown-fixture/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loilo%2Fnode-gfm-markdown-fixture/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/loilo","download_url":"https://codeload.github.com/loilo/node-gfm-markdown-fixture/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239841742,"owners_count":19705981,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T06:39:01.021Z","updated_at":"2026-01-26T19:37:32.601Z","avatar_url":"https://github.com/loilo.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"This package is all about this Readme. It tries to give a GitHub Flavored Markdown file as complete as possible.\n\n---\n\nBorrowed from https://github.com/sindresorhus/generate-github-markdown-css/blob/master/fixture.md\nwho borrowed it from https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet\n\n---\n\nThis is intended as a quick reference and showcase. For more complete info, see [John Gruber's original spec](http://daringfireball.net/projects/markdown/) and the [Github-flavored Markdown info page](http://github.github.com/github-flavored-markdown/).\n\nNote that there is also a [Cheatsheet specific to Markdown Here](./Markdown-Here-Cheatsheet) if that's what you're looking for.\n\nPLEASE DO NOT EDIT THIS PAGE! You can play around with Markdown on our [live demo page](http://www.markdown-here.com/livedemo.html).\n\n##### Table of Contents\n[Headers](#headers)\n[Emphasis](#emphasis)\n[Lists](#lists)\n[Links](#links)\n[Images](#images)\n[Code and Syntax Highlighting](#code)\n[Tables](#tables)\n[Blockquotes](#blockquotes)\n[Inline HTML](#html)\n[Horizontal Rule](#hr)\n[Line Breaks](#lines)\n[Youtube videos](#videos)\n\n\u003ca name=\"headers\"/\u003e\n## Headers\n\n```no-highlight\n# H1\n## H2\n### H3\n#### H4\n##### H5\n###### H6\n\nAlternatively, for H1 and H2, an underline-ish style:\n\nAlt-H1\n======\n\nAlt-H2\n------\n```\n\n# H1\n## H2\n### H3\n#### H4\n##### H5\n###### H6\n\nAlternatively, for H1 and H2, an underline-ish style:\n\nAlt-H1\n======\n\nAlt-H2\n------\n\n\u003ca name=\"emphasis\"/\u003e\n## Emphasis\n\n```no-highlight\nEmphasis, aka italics, with *asterisks* or _underscores_.\n\nStrong emphasis, aka bold, with **asterisks** or __underscores__.\n\nCombined emphasis with **asterisks and _underscores_**.\n\nStrikethrough uses two tildes. ~~Scratch this.~~\n```\n\nEmphasis, aka italics, with *asterisks* or _underscores_.\n\nStrong emphasis, aka bold, with **asterisks** or __underscores__.\n\nCombined emphasis with **asterisks and _underscores_**.\n\nStrikethrough uses two tildes. ~~Scratch this.~~\n\n\n\u003ca name=\"lists\"/\u003e\n## Lists\n\n(In this example, leading and trailing spaces are shown with with dots: ⋅)\n\n```no-highlight\n1. First ordered list item\n2. Another item\n⋅⋅* Unordered sub-list.\n1. Actual numbers don't matter, just that it's a number\n⋅⋅1. Ordered sub-list\n4. And another item.\n\n⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).\n\n⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅\n⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅\n⋅⋅⋅(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)\n\n* Unordered list can use asterisks\n- Or minuses\n+ Or pluses\n```\n\n1. First ordered list item\n2. Another item\n\t* Unordered sub-list.\n1. Actual numbers don't matter, just that it's a number\n\t1. Ordered sub-list\n4. And another item.\n\n\t You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).\n\n\t To have a line break without a paragraph, you will need to use two trailing spaces.\n\t Note that this line is separate, but within the same paragraph.\n\t (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)\n\n* Unordered list can use asterisks\n- Or minuses\n+ Or pluses\n\n\n1. foo\n\t1. bar\n\t\t1. baz\n\t\t\t1. faz\n2. foo2\n\n\n- foo\n\t- bar\n\t\t- baz\n\t\t\t- faz\n- foo2\n\n\n1. foo\n\t- bar\n\t\t1. baz\n\t\t\t- faz\n\n- foo\n\t1. bar\n\t\t- baz\n\t\t\t1. faz\n\n\n\n1. Lists in a list item:\n    - Indented four spaces.\n        * indented eight spaces.\n    - Four spaces again.\n2.  Multiple paragraphs in a list items:\n    It's best to indent the paragraphs four spaces\n    You can get away with three, but it can get\n    confusing when you nest other things.\n    Stick to four.\n\n    We indented the first line an extra space to align\n    it with these paragraphs. In real use, we might do\n    that to the entire list so that all items line up.\n\n    This paragraph is still part of the list item, but it looks messy to humans. So it's a good idea to wrap your nested paragraphs manually, as we did with the first two.\n\n3. Blockquotes in a list item:\n\n    \u003e Skip a line and\n    \u003e indent the \u003e's four spaces.\n\n4. Preformatted text in a list item:\n\n        Skip a line and indent eight spaces.\n        That's four spaces for the list\n        and four to trigger the code block.\n\n\n\n\n## Inline HTML\n\nTo reboot your computer, press \u003ckbd\u003ectrl\u003c/kbd\u003e+\u003ckbd\u003ealt\u003c/kbd\u003e+\u003ckbd\u003edel\u003c/kbd\u003e.\n\n\n\n\u003ca name=\"links\"/\u003e\n## Links\n\nThere are two ways to create links.\n\n```no-highlight\n[I'm an inline-style link](https://www.google.com)\n\n[I'm an inline-style link with title](https://www.google.com \"Google's Homepage\")\n\n[I'm a reference-style link][Arbitrary case-insensitive reference text]\n\n[I'm a relative reference to a repository file](../blob/master/LICENSE)\n\n[You can use numbers for reference-style link definitions][1]\n\nOr leave it empty and use the [link text itself]\n\nSome text to show that the reference links can follow later.\n\n[arbitrary case-insensitive reference text]: https://www.mozilla.org\n[1]: http://slashdot.org\n[link text itself]: http://www.reddit.com\n```\n\n[I'm an inline-style link](https://www.google.com)\n\n[I'm an inline-style link with title](https://www.google.com \"Google's Homepage\")\n\n[I'm a reference-style link][Arbitrary case-insensitive reference text]\n\n[I'm a relative reference to a repository file](../blob/master/LICENSE)\n\n[You can use numbers for reference-style link definitions][1]\n\nOr leave it empty and use the [link text itself]\n\nSome text to show that the reference links can follow later.\n\n[arbitrary case-insensitive reference text]: https://www.mozilla.org\n[1]: http://slashdot.org\n[link text itself]: http://www.reddit.com\n\n\u003ca name=\"images\"/\u003e\n## Images\n\n```no-highlight\nHere's our logo (hover to see the title text):\n\nInline-style:\n![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png \"Logo Title Text 1\")\n\nReference-style:\n![alt text][logo]\n\n[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png \"Logo Title Text 2\"\n```\n\nHere's our logo (hover to see the title text):\n\nInline-style:\n![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png \"Logo Title Text 1\")\n\nReference-style:\n![alt text][logo]\n\n[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png \"Logo Title Text 2\"\n\n\u003ca name=\"code\"/\u003e\n## Code and Syntax Highlighting\n\nCode blocks are part of the Markdown spec, but syntax highlighting isn't. However, many renderers -- like Github's and *Markdown Here* -- support syntax highlighting. Which languages are supported and how those language names should be written will vary from renderer to renderer. *Markdown Here* supports highlighting for dozens of languages (and not-really-languages, like diffs and HTTP headers); to see the complete list, and how to write the language names, see the [highlight.js demo page](http://softwaremaniacs.org/media/soft/highlight/test.html).\n\n```no-highlight\nInline `code` has `back-ticks around` it.\n```\n\nInline `code` has `back-ticks around` it.\n\nBlocks of code are either fenced by lines with three back-ticks \u003ccode\u003e```\u003c/code\u003e, or are indented with four spaces. I recommend only using the fenced code blocks -- they're easier and only they support syntax highlighting.\n\n\u003cpre lang=\"no-highlight\"\u003e\u003ccode\u003e```javascript\nvar s = \"JavaScript syntax highlighting\";\nalert(s);\n```\n\n```python\ns = \"Python syntax highlighting\"\nprint s\n```\n\n```\nNo language indicated, so no syntax highlighting.\nBut let's throw in a \u0026lt;b\u0026gt;tag\u0026lt;/b\u0026gt;.\n```\n\u003c/code\u003e\u003c/pre\u003e\n\n\n\n```javascript\nvar s = \"JavaScript syntax highlighting\";\nalert(s);\n```\n\n```python\ns = \"Python syntax highlighting\"\nprint s\n```\n\n```\nNo language indicated, so no syntax highlighting in Markdown Here (varies on Github).\nBut let's throw in a \u003cb\u003etag\u003c/b\u003e.\n```\n\n\n\u003ca name=\"tables\"/\u003e\n## Tables\n\nTables aren't part of the core Markdown spec, but they are part of GFM and *Markdown Here* supports them. They are an easy way of adding tables to your email -- a task that would otherwise require copy-pasting from another application.\n\n```no-highlight\nColons can be used to align columns.\n\n| Tables        | Are           | Cool  |\n| ------------- |:-------------:| -----:|\n| col 3 is      | right-aligned |  |\n| col 2 is      | centered      |    |\n| zebra stripes | are neat      |     |\n\nThe outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.\n\nMarkdown | Less | Pretty\n--- | --- | ---\n*Still* | `renders` | **nicely**\n1 | 2 | 3\n```\n\nColons can be used to align columns.\n\n| Tables        | Are           | Cool |\n| ------------- |:-------------:| -----:|\n| col 3 is      | right-aligned |  |\n| col 2 is      | centered      |    |\n| zebra stripes | are neat      |     |\n\nThe outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.\n\nMarkdown | Less | Pretty\n--- | --- | ---\n*Still* | `renders` | **nicely**\n1 | 2 | 3\n\n\u003ca name=\"blockquotes\"/\u003e\n## Blockquotes\n\n```no-highlight\n\u003e Blockquotes are very handy in email to emulate reply text.\n\u003e This line is part of the same quote.\n\nQuote break.\n\n\u003e This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.\n```\n\n\u003e Blockquotes are very handy in email to emulate reply text.\n\u003e This line is part of the same quote.\n\nQuote break.\n\n\u003e This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.\n\n\u003ca name=\"html\"/\u003e\n## Inline HTML\n\nYou can also use raw HTML in your Markdown, and it'll mostly work pretty well.\n\n```no-highlight\n\u003cdl\u003e\n\t\u003cdt\u003eDefinition list\u003c/dt\u003e\n\t\u003cdd\u003eIs something people use sometimes.\u003c/dd\u003e\n\n\t\u003cdt\u003eMarkdown in HTML\u003c/dt\u003e\n\t\u003cdd\u003eDoes *not* work **very** well. Use HTML \u003cem\u003etags\u003c/em\u003e.\u003c/dd\u003e\n\u003c/dl\u003e\n```\n\n\u003cdl\u003e\n\t\u003cdt\u003eDefinition list\u003c/dt\u003e\n\t\u003cdd\u003eIs something people use sometimes.\u003c/dd\u003e\n\n\t\u003cdt\u003eMarkdown in HTML\u003c/dt\u003e\n\t\u003cdd\u003eDoes *not* work **very** well. Use HTML \u003cem\u003etags\u003c/em\u003e.\u003c/dd\u003e\n\u003c/dl\u003e\n\n\u003ca name=\"hr\"/\u003e\n## Horizontal Rule\n\n```\nThree or more...\n\n---\n\nHyphens\n\n***\n\nAsterisks\n\n___\n\nUnderscores\n```\n\nThree or more...\n\n---\n\nHyphens\n\n***\n\nAsterisks\n\n___\n\nUnderscores\n\n\u003ca name=\"lines\"/\u003e\n## Line Breaks\n\nMy basic recommendation for learning how line breaks work is to experiment and discover -- hit \u0026lt;Enter\u0026gt; once (i.e., insert one newline), then hit it twice (i.e., insert two newlines), see what happens. You'll soon learn to get what you want. \"Markdown Toggle\" is your friend.\n\nHere are some things to try out:\n\n```\nHere's a line for us to start with.\n\nThis line is separated from the one above by two newlines, so it will be a *separate paragraph*.\n\nThis line is also a separate paragraph, but...\nThis line is only separated by a single newline, so it's a separate line in the *same paragraph*.\n```\n\nHere's a line for us to start with.\n\nThis line is separated from the one above by two newlines, so it will be a *separate paragraph*.\n\nThis line is also begins a separate paragraph, but...\nThis line is only separated by a single newline, so it's a separate line in the *same paragraph*.\n\n(Technical note: *Markdown Here* uses GFM line breaks, so there's no need to use MD's two-space line breaks.)\n\n\u003ca name=\"videos\"/\u003e\n## Youtube videos\n\nThey can't be added directly but you can add an image with a link to the video like this:\n\n```no-highlight\n\u003ca href=\"http://www.youtube.com/watch?feature=player_embedded\u0026v=YOUTUBE_VIDEO_ID_HERE\n\" target=\"_blank\"\u003e\u003cimg src=\"http://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg\"\nalt=\"IMAGE ALT TEXT HERE\" width=\"240\" height=\"180\" border=\"10\" /\u003e\u003c/a\u003e\n```\n\nOr, in pure Markdown, but losing the image sizing and border:\n\n```no-highlight\n[![IMAGE ALT TEXT HERE](http://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg)](http://www.youtube.com/watch?v=YOUTUBE_VIDEO_ID_HERE)\n```\n\nReferencing a bug by #bugID in your git commit links it to the slip. For example #1.\n\n\n\n## Task List\n\n- [ ] foo\n  - [ ] foo\n  - [x] foo\n- [x] foo\n\n\n\n\n\n\n[test]: http://google.com/ \"Google\"\n\n# A heading\n\nJust a note, I've found that I can't test my markdown parser vs others.\nFor example, both markdown.js and showdown code blocks in lists wrong. They're\nalso completely [inconsistent][test] with regards to paragraphs in list items.\n\nA link. Not anymore.\n\n\u003caside\u003eThis will make me fail the test because\nmarkdown.js doesnt acknowledge arbitrary html blocks =/\u003c/aside\u003e\n\n* List Item 1\n\n* List Item 2\n  * New List Item 1\n    Hi, this is a list item.\n  * New List Item 2\n    Another item\n        Code goes here.\n        Lots of it...\n  * New List Item 3\n    The last item\n\n* List Item 3\nThe final item.\n\n* List Item 4\nThe real final item.\n\nParagraph.\n\n\u003e * bq Item 1\n\u003e * bq Item 2\n\u003e   * New bq Item 1\n\u003e   * New bq Item 2\n\u003e   Text here\n\n* * *\n\n\u003e Another blockquote!\n\u003e I really need to get\n\u003e more creative with\n\u003e mockup text..\n\u003e markdown.js breaks here again\n\nAnother Heading\n-------------\n\nHello *world*. Here is a [link](//hello).\nAnd an image ![alt](src).\n\n    Code goes here.\n    Lots of it...\n\n\n\n\n\u003e A list within a blockquote:\n\u003e\n\u003e *\tasterisk 1\n\u003e *\tasterisk 2\n\u003e *\tasterisk 3\n\n\n\n\n\n***This is strong and em.***\n\nSo is ***this*** word.\n\n___This is strong and em.___\n\nSo is ___this___ word.\n\n\n\n\n\n## Unordered\n\nAsterisks tight:\n\n*\tasterisk 1\n*\tasterisk 2\n*\tasterisk 3\n\n\nAsterisks loose:\n\n*\tasterisk 1\n\n*\tasterisk 2\n\n*\tasterisk 3\n\n* * *\n\nPluses tight:\n\n+\tPlus 1\n+\tPlus 2\n+\tPlus 3\n\n\nPluses loose:\n\n+\tPlus 1\n\n+\tPlus 2\n\n+\tPlus 3\n\n* * *\n\n\nMinuses tight:\n\n-\tMinus 1\n-\tMinus 2\n-\tMinus 3\n\n\nMinuses loose:\n\n-\tMinus 1\n\n-\tMinus 2\n\n-\tMinus 3\n\n\n## Ordered\n\nTight:\n\n1.\tFirst\n2.\tSecond\n3.\tThird\n\nand:\n\n1. One\n2. Two\n3. Three\n\n\nLoose using tabs:\n\n1.\tFirst\n\n2.\tSecond\n\n3.\tThird\n\nand using spaces:\n\n1. One\n\n2. Two\n\n3. Three\n\nMultiple paragraphs:\n\n1.\tItem 1, graf one.\n\n\tItem 2. graf two. The quick brown fox jumped over the lazy dog's\n\tback.\n\t\n2.\tItem 2.\n\n3.\tItem 3.\n\n\n\n## Nested\n\n*\tTab\n\t*\tTab\n\t\t*\tTab\n\nHere's another:\n\n1. First\n2. Second:\n\t* Fee\n\t* Fie\n\t* Foe\n3. Third\n\nSame thing but with paragraphs:\n\n1. First\n\n2. Second:\n\t* Fee\n\t* Fie\n\t* Foe\n\n3. Third\n\n\nThis was an error in Markdown 1.0.1:\n\n*\tthis\n\n\t*\tsub\n\n\tthat\n\n\n\n\n\n\n\u003e foo\n\u003e\n\u003e \u003e bar\n\u003e\n\u003e foo\n\n\n\n\n\n\nMarkdown: Syntax\n================\n\n\u003cul id=\"ProjectSubmenu\"\u003e\n    \u003cli\u003e\u003ca href=\"/projects/markdown/\" title=\"Markdown Project Page\"\u003eMain\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"/projects/markdown/basics\" title=\"Markdown Basics\"\u003eBasics\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca class=\"selected\" title=\"Markdown Syntax Documentation\"\u003eSyntax\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"/projects/markdown/license\" title=\"Pricing and License Information\"\u003eLicense\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"/projects/markdown/dingus\" title=\"Online Markdown Web Form\"\u003eDingus\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\n\n*   [Overview](#overview)\n    *   [Philosophy](#philosophy)\n    *   [Inline HTML](#html)\n    *   [Automatic Escaping for Special Characters](#autoescape)\n*   [Block Elements](#block)\n    *   [Paragraphs and Line Breaks](#p)\n    *   [Headers](#header)\n    *   [Blockquotes](#blockquote)\n    *   [Lists](#list)\n    *   [Code Blocks](#precode)\n    *   [Horizontal Rules](#hr)\n*   [Span Elements](#span)\n    *   [Links](#link)\n    *   [Emphasis](#em)\n    *   [Code](#code)\n    *   [Images](#img)\n*   [Miscellaneous](#misc)\n    *   [Backslash Escapes](#backslash)\n    *   [Automatic Links](#autolink)\n\n\n**Note:** This document is itself written using Markdown; you\ncan [see the source for it by adding '.text' to the URL][src].\n\n  [src]: /projects/markdown/syntax.text\n\n* * *\n\n\u003ch2 id=\"overview\"\u003eOverview\u003c/h2\u003e\n\n\u003ch3 id=\"philosophy\"\u003ePhilosophy\u003c/h3\u003e\n\nMarkdown is intended to be as easy-to-read and easy-to-write as is feasible.\n\nReadability, however, is emphasized above all else. A Markdown-formatted\ndocument should be publishable as-is, as plain text, without looking\nlike it's been marked up with tags or formatting instructions. While\nMarkdown's syntax has been influenced by several existing text-to-HTML\nfilters -- including [Setext] [1], [atx] [2], [Textile] [3], [reStructuredText] [4],\n[Grutatext] [5], and [EtText] [6] -- the single biggest source of\ninspiration for Markdown's syntax is the format of plain text email.\n\n  [1]: http://docutils.sourceforge.net/mirror/setext.html\n  [2]: http://www.aaronsw.com/2002/atx/\n  [3]: http://textism.com/tools/textile/\n  [4]: http://docutils.sourceforge.net/rst.html\n  [5]: http://www.triptico.com/software/grutatxt.html\n  [6]: http://ettext.taint.org/doc/\n\nTo this end, Markdown's syntax is comprised entirely of punctuation\ncharacters, which punctuation characters have been carefully chosen so\nas to look like what they mean. E.g., asterisks around a word actually\nlook like \\*emphasis\\*. Markdown lists look like, well, lists. Even\nblockquotes look like quoted passages of text, assuming you've ever\nused email.\n\n\n\n\u003ch3 id=\"html\"\u003eInline HTML\u003c/h3\u003e\n\nMarkdown's syntax is intended for one purpose: to be used as a\nformat for *writing* for the web.\n\nMarkdown is not a replacement for HTML, or even close to it. Its\nsyntax is very small, corresponding only to a very small subset of\nHTML tags. The idea is *not* to create a syntax that makes it easier\nto insert HTML tags. In my opinion, HTML tags are already easy to\ninsert. The idea for Markdown is to make it easy to read, write, and\nedit prose. HTML is a *publishing* format; Markdown is a *writing*\nformat. Thus, Markdown's formatting syntax only addresses issues that\ncan be conveyed in plain text.\n\nFor any markup that is not covered by Markdown's syntax, you simply\nuse HTML itself. There's no need to preface it or delimit it to\nindicate that you're switching from Markdown to HTML; you just use\nthe tags.\n\nThe only restrictions are that block-level HTML elements -- e.g. `\u003cdiv\u003e`,\n`\u003ctable\u003e`, `\u003cpre\u003e`, `\u003cp\u003e`, etc. -- must be separated from surrounding\ncontent by blank lines, and the start and end tags of the block should\nnot be indented with tabs or spaces. Markdown is smart enough not\nto add extra (unwanted) `\u003cp\u003e` tags around HTML block-level tags.\n\nFor example, to add an HTML table to a Markdown article:\n\n    This is a regular paragraph.\n\n    \u003ctable\u003e\n        \u003ctr\u003e\n            \u003ctd\u003eFoo\u003c/td\u003e\n        \u003c/tr\u003e\n    \u003c/table\u003e\n\n    This is another regular paragraph.\n\nNote that Markdown formatting syntax is not processed within block-level\nHTML tags. E.g., you can't use Markdown-style `*emphasis*` inside an\nHTML block.\n\nSpan-level HTML tags -- e.g. `\u003cspan\u003e`, `\u003ccite\u003e`, or `\u003cdel\u003e` -- can be\nused anywhere in a Markdown paragraph, list item, or header. If you\nwant, you can even use HTML tags instead of Markdown formatting; e.g. if\nyou'd prefer to use HTML `\u003ca\u003e` or `\u003cimg\u003e` tags instead of Markdown's\nlink or image syntax, go right ahead.\n\nUnlike block-level HTML tags, Markdown syntax *is* processed within\nspan-level tags.\n\n\n\u003ch3 id=\"autoescape\"\u003eAutomatic Escaping for Special Characters\u003c/h3\u003e\n\nIn HTML, there are two characters that demand special treatment: `\u003c`\nand `\u0026`. Left angle brackets are used to start tags; ampersands are\nused to denote HTML entities. If you want to use them as literal\ncharacters, you must escape them as entities, e.g. `\u0026lt;`, and\n`\u0026amp;`.\n\nAmpersands in particular are bedeviling for web writers. If you want to\nwrite about 'AT\u0026T', you need to write '`AT\u0026amp;T`'. You even need to\nescape ampersands within URLs. Thus, if you want to link to:\n\n    http://images.google.com/images?num=30\u0026q=larry+bird\n\nyou need to encode the URL as:\n\n    http://images.google.com/images?num=30\u0026amp;q=larry+bird\n\nin your anchor tag `href` attribute. Needless to say, this is easy to\nforget, and is probably the single most common source of HTML validation\nerrors in otherwise well-marked-up web sites.\n\nMarkdown allows you to use these characters naturally, taking care of\nall the necessary escaping for you. If you use an ampersand as part of\nan HTML entity, it remains unchanged; otherwise it will be translated\ninto `\u0026amp;`.\n\nSo, if you want to include a copyright symbol in your article, you can write:\n\n    \u0026copy;\n\nand Markdown will leave it alone. But if you write:\n\n    AT\u0026T\n\nMarkdown will translate it to:\n\n    AT\u0026amp;T\n\nSimilarly, because Markdown supports [inline HTML](#html), if you use\nangle brackets as delimiters for HTML tags, Markdown will treat them as\nsuch. But if you write:\n\n    4 \u003c 5\n\nMarkdown will translate it to:\n\n    4 \u0026lt; 5\n\nHowever, inside Markdown code spans and blocks, angle brackets and\nampersands are *always* encoded automatically. This makes it easy to use\nMarkdown to write about HTML code. (As opposed to raw HTML, which is a\nterrible format for writing about HTML syntax, because every single `\u003c`\nand `\u0026` in your example code needs to be escaped.)\n\n\n* * *\n\n\n\u003ch2 id=\"block\"\u003eBlock Elements\u003c/h2\u003e\n\n\n\u003ch3 id=\"p\"\u003eParagraphs and Line Breaks\u003c/h3\u003e\n\nA paragraph is simply one or more consecutive lines of text, separated\nby one or more blank lines. (A blank line is any line that looks like a\nblank line -- a line containing nothing but spaces or tabs is considered\nblank.) Normal paragraphs should not be intended with spaces or tabs.\n\nThe implication of the \"one or more consecutive lines of text\" rule is\nthat Markdown supports \"hard-wrapped\" text paragraphs. This differs\nsignificantly from most other text-to-HTML formatters (including Movable\nType's \"Convert Line Breaks\" option) which translate every line break\ncharacter in a paragraph into a `\u003cbr /\u003e` tag.\n\nWhen you *do* want to insert a `\u003cbr /\u003e` break tag using Markdown, you\nend a line with two or more spaces, then type return.\n\nYes, this takes a tad more effort to create a `\u003cbr /\u003e`, but a simplistic\n\"every line break is a `\u003cbr /\u003e`\" rule wouldn't work for Markdown.\nMarkdown's email-style [blockquoting][bq] and multi-paragraph [list items][l]\nwork best -- and look better -- when you format them with hard breaks.\n\n  [bq]: #blockquote\n  [l]:  #list\n\n\n\n\u003ch3 id=\"header\"\u003eHeaders\u003c/h3\u003e\n\nMarkdown supports two styles of headers, [Setext] [1] and [atx] [2].\n\nSetext-style headers are \"underlined\" using equal signs (for first-level\nheaders) and dashes (for second-level headers). For example:\n\n    This is an H1\n    =============\n\n    This is an H2\n    -------------\n\nAny number of underlining `=`'s or `-`'s will work.\n\nAtx-style headers use 1-6 hash characters at the start of the line,\ncorresponding to header levels 1-6. For example:\n\n    # This is an H1\n\n    ## This is an H2\n\n    ###### This is an H6\n\nOptionally, you may \"close\" atx-style headers. This is purely\ncosmetic -- you can use this if you think it looks better. The\nclosing hashes don't even need to match the number of hashes\nused to open the header. (The number of opening hashes\ndetermines the header level.) :\n\n    # This is an H1 #\n\n    ## This is an H2 ##\n\n    ### This is an H3 ######\n\n\n\u003ch3 id=\"blockquote\"\u003eBlockquotes\u003c/h3\u003e\n\nMarkdown uses email-style `\u003e` characters for blockquoting. If you're\nfamiliar with quoting passages of text in an email message, then you\nknow how to create a blockquote in Markdown. It looks best if you hard\nwrap the text and put a `\u003e` before every line:\n\n    \u003e This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,\n    \u003e consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.\n    \u003e Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.\n    \u003e \n    \u003e Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse\n    \u003e id sem consectetuer libero luctus adipiscing.\n\nMarkdown allows you to be lazy and only put the `\u003e` before the first\nline of a hard-wrapped paragraph:\n\n    \u003e This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,\n    consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.\n    Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.\n\n    \u003e Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse\n    id sem consectetuer libero luctus adipiscing.\n\nBlockquotes can be nested (i.e. a blockquote-in-a-blockquote) by\nadding additional levels of `\u003e`:\n\n    \u003e This is the first level of quoting.\n    \u003e\n    \u003e \u003e This is nested blockquote.\n    \u003e\n    \u003e Back to the first level.\n\nBlockquotes can contain other Markdown elements, including headers, lists,\nand code blocks:\n\n\t\u003e ## This is a header.\n\t\u003e \n\t\u003e 1.   This is the first list item.\n\t\u003e 2.   This is the second list item.\n\t\u003e \n\t\u003e Here's some example code:\n\t\u003e \n\t\u003e     return shell_exec(\"echo $input | $markdown_script\");\n\nAny decent text editor should make email-style quoting easy. For\nexample, with BBEdit, you can make a selection and choose Increase\nQuote Level from the Text menu.\n\n\n\u003ch3 id=\"list\"\u003eLists\u003c/h3\u003e\n\nMarkdown supports ordered (numbered) and unordered (bulleted) lists.\n\nUnordered lists use asterisks, pluses, and hyphens -- interchangably\n-- as list markers:\n\n    *   Red\n    *   Green\n    *   Blue\n\nis equivalent to:\n\n    +   Red\n    +   Green\n    +   Blue\n\nand:\n\n    -   Red\n    -   Green\n    -   Blue\n\nOrdered lists use numbers followed by periods:\n\n    1.  Bird\n    2.  McHale\n    3.  Parish\n\nIt's important to note that the actual numbers you use to mark the\nlist have no effect on the HTML output Markdown produces. The HTML\nMarkdown produces from the above list is:\n\n    \u003col\u003e\n    \u003cli\u003eBird\u003c/li\u003e\n    \u003cli\u003eMcHale\u003c/li\u003e\n    \u003cli\u003eParish\u003c/li\u003e\n    \u003c/ol\u003e\n\nIf you instead wrote the list in Markdown like this:\n\n    1.  Bird\n    1.  McHale\n    1.  Parish\n\nor even:\n\n    3. Bird\n    1. McHale\n    8. Parish\n\nyou'd get the exact same HTML output. The point is, if you want to,\nyou can use ordinal numbers in your ordered Markdown lists, so that\nthe numbers in your source match the numbers in your published HTML.\nBut if you want to be lazy, you don't have to.\n\nIf you do use lazy list numbering, however, you should still start the\nlist with the number 1. At some point in the future, Markdown may support\nstarting ordered lists at an arbitrary number.\n\nList markers typically start at the left margin, but may be indented by\nup to three spaces. List markers must be followed by one or more spaces\nor a tab.\n\nTo make lists look nice, you can wrap items with hanging indents:\n\n    *   Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n        Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,\n        viverra nec, fringilla in, laoreet vitae, risus.\n    *   Donec sit amet nisl. Aliquam semper ipsum sit amet velit.\n        Suspendisse id sem consectetuer libero luctus adipiscing.\n\nBut if you want to be lazy, you don't have to:\n\n    *   Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n    Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,\n    viverra nec, fringilla in, laoreet vitae, risus.\n    *   Donec sit amet nisl. Aliquam semper ipsum sit amet velit.\n    Suspendisse id sem consectetuer libero luctus adipiscing.\n\nIf list items are separated by blank lines, Markdown will wrap the\nitems in `\u003cp\u003e` tags in the HTML output. For example, this input:\n\n    *   Bird\n    *   Magic\n\nwill turn into:\n\n    \u003cul\u003e\n    \u003cli\u003eBird\u003c/li\u003e\n    \u003cli\u003eMagic\u003c/li\u003e\n    \u003c/ul\u003e\n\nBut this:\n\n    *   Bird\n\n    *   Magic\n\nwill turn into:\n\n    \u003cul\u003e\n    \u003cli\u003e\u003cp\u003eBird\u003c/p\u003e\u003c/li\u003e\n    \u003cli\u003e\u003cp\u003eMagic\u003c/p\u003e\u003c/li\u003e\n    \u003c/ul\u003e\n\nList items may consist of multiple paragraphs. Each subsequent\nparagraph in a list item must be intended by either 4 spaces\nor one tab:\n\n    1.  This is a list item with two paragraphs. Lorem ipsum dolor\n        sit amet, consectetuer adipiscing elit. Aliquam hendrerit\n        mi posuere lectus.\n\n        Vestibulum enim wisi, viverra nec, fringilla in, laoreet\n        vitae, risus. Donec sit amet nisl. Aliquam semper ipsum\n        sit amet velit.\n\n    2.  Suspendisse id sem consectetuer libero luctus adipiscing.\n\nIt looks nice if you indent every line of the subsequent\nparagraphs, but here again, Markdown will allow you to be\nlazy:\n\n    *   This is a list item with two paragraphs.\n\n        This is the second paragraph in the list item. You're\n    only required to indent the first line. Lorem ipsum dolor\n    sit amet, consectetuer adipiscing elit.\n\n    *   Another item in the same list.\n\nTo put a blockquote within a list item, the blockquote's `\u003e`\ndelimiters need to be indented:\n\n    *   A list item with a blockquote:\n\n        \u003e This is a blockquote\n        \u003e inside a list item.\n\nTo put a code block within a list item, the code block needs\nto be indented *twice* -- 8 spaces or two tabs:\n\n    *   A list item with a code block:\n\n            \u003ccode goes here\u003e\n\n\nIt's worth noting that it's possible to trigger an ordered list by\naccident, by writing something like this:\n\n    1986. What a great season.\n\nIn other words, a *number-period-space* sequence at the beginning of a\nline. To avoid this, you can backslash-escape the period:\n\n    1986\\. What a great season.\n\n\n\n\u003ch3 id=\"precode\"\u003eCode Blocks\u003c/h3\u003e\n\nPre-formatted code blocks are used for writing about programming or\nmarkup source code. Rather than forming normal paragraphs, the lines\nof a code block are interpreted literally. Markdown wraps a code block\nin both `\u003cpre\u003e` and `\u003ccode\u003e` tags.\n\nTo produce a code block in Markdown, simply indent every line of the\nblock by at least 4 spaces or 1 tab. For example, given this input:\n\n    This is a normal paragraph:\n\n        This is a code block.\n\nMarkdown will generate:\n\n    \u003cp\u003eThis is a normal paragraph:\u003c/p\u003e\n\n    \u003cpre\u003e\u003ccode\u003eThis is a code block.\n    \u003c/code\u003e\u003c/pre\u003e\n\nOne level of indentation -- 4 spaces or 1 tab -- is removed from each\nline of the code block. For example, this:\n\n    Here is an example of AppleScript:\n\n        tell application \"Foo\"\n            beep\n        end tell\n\nwill turn into:\n\n    \u003cp\u003eHere is an example of AppleScript:\u003c/p\u003e\n\n    \u003cpre\u003e\u003ccode\u003etell application \"Foo\"\n        beep\n    end tell\n    \u003c/code\u003e\u003c/pre\u003e\n\nA code block continues until it reaches a line that is not indented\n(or the end of the article).\n\nWithin a code block, ampersands (`\u0026`) and angle brackets (`\u003c` and `\u003e`)\nare automatically converted into HTML entities. This makes it very\neasy to include example HTML source code using Markdown -- just paste\nit and indent it, and Markdown will handle the hassle of encoding the\nampersands and angle brackets. For example, this:\n\n        \u003cdiv class=\"footer\"\u003e\n            \u0026copy; 2004 Foo Corporation\n        \u003c/div\u003e\n\nwill turn into:\n\n    \u003cpre\u003e\u003ccode\u003e\u0026lt;div class=\"footer\"\u0026gt;\n        \u0026amp;copy; 2004 Foo Corporation\n    \u0026lt;/div\u0026gt;\n    \u003c/code\u003e\u003c/pre\u003e\n\nRegular Markdown syntax is not processed within code blocks. E.g.,\nasterisks are just literal asterisks within a code block. This means\nit's also easy to use Markdown to write about Markdown's own syntax.\n\n\n\n\u003ch3 id=\"hr\"\u003eHorizontal Rules\u003c/h3\u003e\n\nYou can produce a horizontal rule tag (`\u003chr /\u003e`) by placing three or\nmore hyphens, asterisks, or underscores on a line by themselves. If you\nwish, you may use spaces between the hyphens or asterisks. Each of the\nfollowing lines will produce a horizontal rule:\n\n    * * *\n\n    ***\n\n    *****\n\t\n    - - -\n\n    ---------------------------------------\n\n\t_ _ _\n\n\n* * *\n\n\u003ch2 id=\"span\"\u003eSpan Elements\u003c/h2\u003e\n\n\u003ch3 id=\"link\"\u003eLinks\u003c/h3\u003e\n\nMarkdown supports two style of links: *inline* and *reference*.\n\nIn both styles, the link text is delimited by [square brackets].\n\nTo create an inline link, use a set of regular parentheses immediately\nafter the link text's closing square bracket. Inside the parentheses,\nput the URL where you want the link to point, along with an *optional*\ntitle for the link, surrounded in quotes. For example:\n\n    This is [an example](http://example.com/ \"Title\") inline link.\n\n    [This link](http://example.net/) has no title attribute.\n\nWill produce:\n\n    \u003cp\u003eThis is \u003ca href=\"http://example.com/\" title=\"Title\"\u003e\n    an example\u003c/a\u003e inline link.\u003c/p\u003e\n\n    \u003cp\u003e\u003ca href=\"http://example.net/\"\u003eThis link\u003c/a\u003e has no\n    title attribute.\u003c/p\u003e\n\nIf you're referring to a local resource on the same server, you can\nuse relative paths:\n\n    See my [About](/about/) page for details.\n\nReference-style links use a second set of square brackets, inside\nwhich you place a label of your choosing to identify the link:\n\n    This is [an example][id] reference-style link.\n\nYou can optionally use a space to separate the sets of brackets:\n\n    This is [an example] [id] reference-style link.\n\nThen, anywhere in the document, you define your link label like this,\non a line by itself:\n\n    [id]: http://example.com/  \"Optional Title Here\"\n\nThat is:\n\n*   Square brackets containing the link identifier (optionally\n    indented from the left margin using up to three spaces);\n*   followed by a colon;\n*   followed by one or more spaces (or tabs);\n*   followed by the URL for the link;\n*   optionally followed by a title attribute for the link, enclosed\n    in double or single quotes.\n\nThe link URL may, optionally, be surrounded by angle brackets:\n\n    [id]: \u003chttp://example.com/\u003e  \"Optional Title Here\"\n\nYou can put the title attribute on the next line and use extra spaces\nor tabs for padding, which tends to look better with longer URLs:\n\n    [id]: http://example.com/longish/path/to/resource/here\n        \"Optional Title Here\"\n\nLink definitions are only used for creating links during Markdown\nprocessing, and are stripped from your document in the HTML output.\n\nLink definition names may constist of letters, numbers, spaces, and punctuation -- but they are *not* case sensitive. E.g. these two links:\n\n\t[link text][a]\n\t[link text][A]\n\nare equivalent.\n\nThe *implicit link name* shortcut allows you to omit the name of the\nlink, in which case the link text itself is used as the name.\nJust use an empty set of square brackets -- e.g., to link the word\n\"Google\" to the google.com web site, you could simply write:\n\n\t[Google][]\n\nAnd then define the link:\n\n\t[Google]: http://google.com/\n\nBecause link names may contain spaces, this shortcut even works for\nmultiple words in the link text:\n\n\tVisit [Daring Fireball][] for more information.\n\nAnd then define the link:\n\t\n\t[Daring Fireball]: http://daringfireball.net/\n\nLink definitions can be placed anywhere in your Markdown document. I\ntend to put them immediately after each paragraph in which they're\nused, but if you want, you can put them all at the end of your\ndocument, sort of like footnotes.\n\nHere's an example of reference links in action:\n\n    I get 10 times more traffic from [Google] [1] than from\n    [Yahoo] [2] or [MSN] [3].\n\n      [1]: http://google.com/        \"Google\"\n      [2]: http://search.yahoo.com/  \"Yahoo Search\"\n      [3]: http://search.msn.com/    \"MSN Search\"\n\nUsing the implicit link name shortcut, you could instead write:\n\n    I get 10 times more traffic from [Google][] than from\n    [Yahoo][] or [MSN][].\n\n      [google]: http://google.com/        \"Google\"\n      [yahoo]:  http://search.yahoo.com/  \"Yahoo Search\"\n      [msn]:    http://search.msn.com/    \"MSN Search\"\n\nBoth of the above examples will produce the following HTML output:\n\n    \u003cp\u003eI get 10 times more traffic from \u003ca href=\"http://google.com/\"\n    title=\"Google\"\u003eGoogle\u003c/a\u003e than from\n    \u003ca href=\"http://search.yahoo.com/\" title=\"Yahoo Search\"\u003eYahoo\u003c/a\u003e\n    or \u003ca href=\"http://search.msn.com/\" title=\"MSN Search\"\u003eMSN\u003c/a\u003e.\u003c/p\u003e\n\nFor comparison, here is the same paragraph written using\nMarkdown's inline link style:\n\n    I get 10 times more traffic from [Google](http://google.com/ \"Google\")\n    than from [Yahoo](http://search.yahoo.com/ \"Yahoo Search\") or\n    [MSN](http://search.msn.com/ \"MSN Search\").\n\nThe point of reference-style links is not that they're easier to\nwrite. The point is that with reference-style links, your document\nsource is vastly more readable. Compare the above examples: using\nreference-style links, the paragraph itself is only 81 characters\nlong; with inline-style links, it's 176 characters; and as raw HTML,\nit's 234 characters. In the raw HTML, there's more markup than there\nis text.\n\nWith Markdown's reference-style links, a source document much more\nclosely resembles the final output, as rendered in a browser. By\nallowing you to move the markup-related metadata out of the paragraph,\nyou can add links without interrupting the narrative flow of your\nprose.\n\n\n\u003ch3 id=\"em\"\u003eEmphasis\u003c/h3\u003e\n\nMarkdown treats asterisks (`*`) and underscores (`_`) as indicators of\nemphasis. Text wrapped with one `*` or `_` will be wrapped with an\nHTML `\u003cem\u003e` tag; double `*`'s or `_`'s will be wrapped with an HTML\n`\u003cstrong\u003e` tag. E.g., this input:\n\n    *single asterisks*\n\n    _single underscores_\n\n    **double asterisks**\n\n    __double underscores__\n\nwill produce:\n\n    \u003cem\u003esingle asterisks\u003c/em\u003e\n\n    \u003cem\u003esingle underscores\u003c/em\u003e\n\n    \u003cstrong\u003edouble asterisks\u003c/strong\u003e\n\n    \u003cstrong\u003edouble underscores\u003c/strong\u003e\n\nYou can use whichever style you prefer; the lone restriction is that\nthe same character must be used to open and close an emphasis span.\n\nEmphasis can be used in the middle of a word:\n\n    un*fucking*believable\n\nBut if you surround an `*` or `_` with spaces, it'll be treated as a\nliteral asterisk or underscore.\n\nTo produce a literal asterisk or underscore at a position where it\nwould otherwise be used as an emphasis delimiter, you can backslash\nescape it:\n\n    \\*this text is surrounded by literal asterisks\\*\n\n\n\n\u003ch3 id=\"code\"\u003eCode\u003c/h3\u003e\n\nTo indicate a span of code, wrap it with backtick quotes (`` ` ``).\nUnlike a pre-formatted code block, a code span indicates code within a\nnormal paragraph. For example:\n\n    Use the `printf()` function.\n\nwill produce:\n\n    \u003cp\u003eUse the \u003ccode\u003eprintf()\u003c/code\u003e function.\u003c/p\u003e\n\nTo include a literal backtick character within a code span, you can use\nmultiple backticks as the opening and closing delimiters:\n\n    ``There is a literal backtick (`) here.``\n\nwhich will produce this:\n\n    \u003cp\u003e\u003ccode\u003eThere is a literal backtick (`) here.\u003c/code\u003e\u003c/p\u003e\n\nThe backtick delimiters surrounding a code span may include spaces --\none after the opening, one before the closing. This allows you to place\nliteral backtick characters at the beginning or end of a code span:\n\n\tA single backtick in a code span: `` ` ``\n\t\n\tA backtick-delimited string in a code span: `` `foo` ``\n\nwill produce:\n\n\t\u003cp\u003eA single backtick in a code span: \u003ccode\u003e`\u003c/code\u003e\u003c/p\u003e\n\t\n\t\u003cp\u003eA backtick-delimited string in a code span: \u003ccode\u003e`foo`\u003c/code\u003e\u003c/p\u003e\n\nWith a code span, ampersands and angle brackets are encoded as HTML\nentities automatically, which makes it easy to include example HTML\ntags. Markdown will turn this:\n\n    Please don't use any `\u003cblink\u003e` tags.\n\ninto:\n\n    \u003cp\u003ePlease don't use any \u003ccode\u003e\u0026lt;blink\u0026gt;\u003c/code\u003e tags.\u003c/p\u003e\n\nYou can write this:\n\n    `\u0026#8212;` is the decimal-encoded equivalent of `\u0026mdash;`.\n\nto produce:\n\n    \u003cp\u003e\u003ccode\u003e\u0026amp;#8212;\u003c/code\u003e is the decimal-encoded\n    equivalent of \u003ccode\u003e\u0026amp;mdash;\u003c/code\u003e.\u003c/p\u003e\n\n\n\n\u003ch3 id=\"img\"\u003eImages\u003c/h3\u003e\n\nAdmittedly, it's fairly difficult to devise a \"natural\" syntax for\nplacing images into a plain text document format.\n\nMarkdown uses an image syntax that is intended to resemble the syntax\nfor links, allowing for two styles: *inline* and *reference*.\n\nInline image syntax looks like this:\n\n    ![Alt text](/path/to/img.jpg)\n\n    ![Alt text](/path/to/img.jpg \"Optional title\")\n\nThat is:\n\n*   An exclamation mark: `!`;\n*   followed by a set of square brackets, containing the `alt`\n    attribute text for the image;\n*   followed by a set of parentheses, containing the URL or path to\n    the image, and an optional `title` attribute enclosed in double\n    or single quotes.\n\nReference-style image syntax looks like this:\n\n    ![Alt text][id]\n\nWhere \"id\" is the name of a defined image reference. Image references\nare defined using syntax identical to link references:\n\n    [id]: url/to/image  \"Optional title attribute\"\n\nAs of this writing, Markdown has no syntax for specifying the\ndimensions of an image; if this is important to you, you can simply\nuse regular HTML `\u003cimg\u003e` tags.\n\n\n* * *\n\n\n\u003ch2 id=\"misc\"\u003eMiscellaneous\u003c/h2\u003e\n\n\u003ch3 id=\"autolink\"\u003eAutomatic Links\u003c/h3\u003e\n\nMarkdown supports a shortcut style for creating \"automatic\" links for URLs and email addresses: simply surround the URL or email address with angle brackets. What this means is that if you want to show the actual text of a URL or email address, and also have it be a clickable link, you can do this:\n\n    \u003chttp://example.com/\u003e\n    \nMarkdown will turn this into:\n\n    \u003ca href=\"http://example.com/\"\u003ehttp://example.com/\u003c/a\u003e\n\nAutomatic links for email addresses work similarly, except that\nMarkdown will also perform a bit of randomized decimal and hex\nentity-encoding to help obscure your address from address-harvesting\nspambots. For example, Markdown will turn this:\n\n    \u003caddress@example.com\u003e\n\ninto something like this:\n\n    \u003ca href=\"\u0026#x6D;\u0026#x61;i\u0026#x6C;\u0026#x74;\u0026#x6F;:\u0026#x61;\u0026#x64;\u0026#x64;\u0026#x72;\u0026#x65;\n    \u0026#115;\u0026#115;\u0026#64;\u0026#101;\u0026#120;\u0026#x61;\u0026#109;\u0026#x70;\u0026#x6C;e\u0026#x2E;\u0026#99;\u0026#111;\n    \u0026#109;\"\u003e\u0026#x61;\u0026#x64;\u0026#x64;\u0026#x72;\u0026#x65;\u0026#115;\u0026#115;\u0026#64;\u0026#101;\u0026#120;\u0026#x61;\n    \u0026#109;\u0026#x70;\u0026#x6C;e\u0026#x2E;\u0026#99;\u0026#111;\u0026#109;\u003c/a\u003e\n\nwhich will render in a browser as a clickable link to \"address@example.com\".\n\n(This sort of entity-encoding trick will indeed fool many, if not\nmost, address-harvesting bots, but it definitely won't fool all of\nthem. It's better than nothing, but an address published in this way\nwill probably eventually start receiving spam.)\n\n\n\n\u003ch3 id=\"backslash\"\u003eBackslash Escapes\u003c/h3\u003e\n\nMarkdown allows you to use backslash escapes to generate literal\ncharacters which would otherwise have special meaning in Markdown's\nformatting syntax. For example, if you wanted to surround a word with\nliteral asterisks (instead of an HTML `\u003cem\u003e` tag), you can backslashes\nbefore the asterisks, like this:\n\n    \\*literal asterisks\\*\n\nMarkdown provides backslash escapes for the following characters:\n\n    \\   backslash\n    `   backtick\n    *   asterisk\n    _   underscore\n    {}  curly braces\n    []  square brackets\n    ()  parentheses\n    #   hash mark\n\t+\tplus sign\n\t-\tminus sign (hyphen)\n    .   dot\n    !   exclamation mark\n\n\n\n\n\n\n\nFoo [bar][].\n\nFoo [bar](/url/ \"Title with \"quotes\" inside\").\n\n\n  [bar]: /url/ \"Title with \"quotes\" inside\"\n\n\n\n\n\n\n\n\nThis is the [simple case].\n\n[simple case]: /simple\n\n\n\nThis one has a [line\nbreak].\n\nThis one has a [line \nbreak] with a line-ending space.\n\n[line break]: /foo\n\n\n[this] [that] and the [other]\n\n[this]: /this\n[that]: /that\n[other]: /other\n\n\n\n\n\nHere's a simple block:\n\n\u003cdiv\u003e\n\tfoo\n\u003c/div\u003e\n\nThis should be a code block, though:\n\n\t\u003cdiv\u003e\n\t\tfoo\n\t\u003c/div\u003e\n\nAs should this:\n\n\t\u003cdiv\u003efoo\u003c/div\u003e\n\nNow, nested:\n\n\u003cdiv\u003e\n\t\u003cdiv\u003e\n\t\t\u003cdiv\u003e\n\t\t\tfoo\n\t\t\u003c/div\u003e\n\t\u003c/div\u003e\n\u003c/div\u003e\n\nThis should just be an HTML comment:\n\n\u003c!-- Comment --\u003e\n\nMultiline:\n\n\u003c!--\nBlah\nBlah\n--\u003e\n\nCode block:\n\n\t\u003c!-- Comment --\u003e\n\nJust plain comment, with trailing spaces on the line:\n\n\u003c!-- foo --\u003e   \n\nCode:\n\n\t\u003chr /\u003e\n\t\nHr's:\n\n\u003chr\u003e\n\n\u003chr/\u003e\n\n\u003chr /\u003e\n\n\u003chr\u003e   \n\n\u003chr/\u003e  \n\n\u003chr /\u003e \n\n\u003chr class=\"foo\" id=\"bar\" /\u003e\n\n\u003chr class=\"foo\" id=\"bar\"/\u003e\n\n\u003chr class=\"foo\" id=\"bar\" \u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floilo%2Fnode-gfm-markdown-fixture","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Floilo%2Fnode-gfm-markdown-fixture","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floilo%2Fnode-gfm-markdown-fixture/lists"}