diff options
author | Waylan Limberg <waylan@gmail.com> | 2014-02-13 12:56:04 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2014-02-13 12:56:04 -0500 |
commit | fefe904ca9175ab390a8a0868e810a41945cdd8f (patch) | |
tree | 4bcd935d76e272ce8721ef3d1416e34ff0add1df /docs/extensions | |
parent | 9bfdc1b45d889c419379afd35a6d463e99dad2df (diff) | |
parent | 63720f2c05b8c82713fa0237f4d3242c9e7d32dc (diff) | |
download | markdown-fefe904ca9175ab390a8a0868e810a41945cdd8f.tar.gz markdown-fefe904ca9175ab390a8a0868e810a41945cdd8f.tar.bz2 markdown-fefe904ca9175ab390a8a0868e810a41945cdd8f.zip |
Merge pull request #287 from mitya57/master
Release Notes and a fix for Smarty
Diffstat (limited to 'docs/extensions')
-rw-r--r-- | docs/extensions/extra.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/extensions/extra.txt b/docs/extensions/extra.txt index 0507e8f..ace7a57 100644 --- a/docs/extensions/extra.txt +++ b/docs/extensions/extra.txt @@ -45,7 +45,7 @@ your own clone of Extra under a different name Markdown Inside HTML Blocks --------------------------- -Unlike the other Extra features, this feature is build into the markdown core and is turned on when `extra` is enabled. +Unlike the other Extra features, this feature is built into the markdown core and is turned on when `extra` is enabled. The content of any raw html block element can be Markdown-formatted simply by adding a `markdown` attribute to the opening tag. The markdown attribute will be stripped from the output, but all other attributes will be preserved. @@ -61,9 +61,9 @@ This is *true* markdown text. ``` #### Result: ``` -<p>This is <em>true</em> markdown text.</p> -<div> -<p>This is <em>true</em> markdown text.</p> +<p>This is <em>true</em> markdown text.</p> +<div> +<p>This is <em>true</em> markdown text.</p> </div> ``` |