From 14f76500a86b8af3f97d3e1616fcd01d5d7ca9ac Mon Sep 17 00:00:00 2001 From: Adam Dinwoodie Date: Mon, 18 Mar 2013 20:57:14 +0000 Subject: Use lead blockprocessor comment as docstring The lead comment in blockprocessors.py should really be a docstring for consistency with other files. Fix this with the other part of @Arfrever's patch for issue #203. --- markdown/blockprocessors.py | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'markdown/blockprocessors.py') 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 -- cgit v1.2.3