diff options
-rw-r--r-- | markdown/blockprocessors.py | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/markdown/blockprocessors.py b/markdown/blockprocessors.py index d1a250d..61977b4 100644 --- a/markdown/blockprocessors.py +++ b/markdown/blockprocessors.py @@ -1,13 +1,15 @@ -# CORE MARKDOWN BLOCKPARSER -# =========================================================================== -# -# This parser handles basic parsing of Markdown blocks. It doesn't concern itself -# with inline elements such as **bold** or *italics*, but rather just catches -# blocks, lists, quotes, etc. -# -# The BlockParser is made up of a bunch of BlockProssors, each handling a -# different type of block. Extensions may add/replace/remove BlockProcessors -# as they need to alter how markdown blocks are parsed. +""" +CORE MARKDOWN BLOCKPARSER +=========================================================================== + +This parser handles basic parsing of Markdown blocks. It doesn't concern itself +with inline elements such as **bold** or *italics*, but rather just catches +blocks, lists, quotes, etc. + +The BlockParser is made up of a bunch of BlockProssors, each handling a +different type of block. Extensions may add/replace/remove BlockProcessors +as they need to alter how markdown blocks are parsed. +""" from __future__ import absolute_import from __future__ import division |