dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

inline.text (960B)


      1 This is *italic.*
      2 This is **bold.**
      3 This is `code`.
      4 This is ``code`containing`backticks``.
      5 
      6 Seven backquotes in a row ``````` do not constitute a code span.
      7 
      8 If backquotes begin or end a code span, you have to use spaces,
      9 like `` `this` ``.  Markdown removes any leading and trailing
     10 whitespace. Only the space a the end is necessary,
     11 like ```this` ``.
     12 
     13 A backslash as the final character in an inline code fragment does
     14 *not* escape the backquote.  That is, `C-h C-\` will render as
     15 
     16     <code>C-h C-\</code>
     17 
     18 However, we can escape what would otherwise be a leading backquote,
     19 as in \`foo\` or \`bar\`.
     20 
     21 But this will be a code span crossing lines: \`foo` or
     22 bar ` containing only "or bar".
     23 
     24 This should result in three backquotes in a code span `` ``` `` and
     25 they should even match across across lines `` ```
     26 ``, like so.  However, backquotes should not `` ``` match
     27 
     28 across two blocks``.
     29 
     30 Links have several components: [text](http://www.w3.org/ "title").