Skip to content

Commit

Permalink
Merge branch 'master' of git@github.com:bobtfish/text-multimarkdown
Browse files Browse the repository at this point in the history
* 'master' of git@github.com:bobtfish/text-multimarkdown:
  Added POD about interpretation of Markdown in HTML block-level elements, and regenerated README
  • Loading branch information
bobtfish committed Oct 6, 2009
2 parents 9f82aa1 + 084e1c8 commit 1be27fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ DESCRIPTION
Markdown's syntax is designed not as a generic markup language, but
specifically to serve as a front-end to (X)HTML. You can use span-level
HTML tags anywhere in a Markdown document, and you can use block level
HTML tags (like <div> and <table> as well).
HTML tags ("<div>", "<table>" etc.). Note that by default Markdown isn't
interpreted in HTML block-level elements, unless you add a "markdown=1""
attribute to the element. See Text::Markdown for details.

This module implements the MultiMarkdown markdown syntax extensions
from:
Expand Down
5 changes: 4 additions & 1 deletion lib/Text/MultiMarkdown.pm
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ as headers, *emphasis*, code blocks, blockquotes, and links.
Markdown's syntax is designed not as a generic markup language, but
specifically to serve as a front-end to (X)HTML. You can use span-level
HTML tags anywhere in a Markdown document, and you can use block level
HTML tags (like <div> and <table> as well).
HTML tags (C<< <div> >>, C<< <table> >> etc.). Note that by default
Markdown isn't interpreted in HTML block-level elements, unless you add
a C<markdown=1"> attribute to the element. See L<Text::Markdown> for
details.
This module implements the MultiMarkdown markdown syntax extensions from:
Expand Down

0 comments on commit 1be27fa

Please sign in to comment.