puppet-strings/spec
Ian Kronquist 6137e94a25 (PDOC-30) Fix Markdown parsing lists parsing
The transformer comment matching regex matched all whitespace after a comment.
Lines which were effectively "blank" and just had a comment would be erased.
Markdown lists need to end with a blank line. This messed up markdown
formatting.

The culprit is the regex /^\s*#\s/ which matches all of the comment ' #\n',
however we want to leave the newline alone for markdown to parse.
We replace the regex with /^\s*#[ \t]/ which will only match tabs or spaces
after the hash and leave our beloved newline alone.
2015-07-16 11:50:52 -07:00
..
acceptance (maint) Remove rspec-html-matchers from acceptance 2015-07-06 11:55:59 -07:00
lib/strings_spec (PDOC-9) Add preliminary full system test 2014-10-06 10:08:30 -07:00
unit (PDOC-30) Fix Markdown parsing lists parsing 2015-07-16 11:50:52 -07:00
spec_helper.rb (PDOC-26) Rename Puppetx to PuppetX 2015-02-06 14:08:42 -08:00
spec_helper_acceptance.rb (PDOC-8) Fix present rubocop offenses 2014-10-08 11:36:21 -07:00