Constant

BlueCloth::ListRegexp

There's no documentation for this item.

%r{
        (?:
              ^[ ]{0,#{TabWidth - 1}}              # Indent < tab width
              (#{ListMarkerAny})                   # unordered or ordered ($1)
              [ ]+                                         # At least one space
        )
        (?m:.+?)                                            # item content (include newlines)
        (?:
                \z                                         # Either EOF
              |                                                    #  or
                \n{2,}                                     # Blank line...
                (?=\S)                                     # ...followed by non-space
                (?![ ]*                                    # ...but not another item
                      (#{ListMarkerAny})
                 [ ]+)
        )
}x
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.