puppet-strings/spec/unit/puppet_x/puppetlabs/strings/yard
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
..
defined_type_handler_spec.rb (PDOC-30) Fix Markdown parsing lists parsing 2015-07-16 11:50:52 -07:00
host_class_handler_spec.rb (PDOC-30) Fix Markdown parsing lists parsing 2015-07-16 11:50:52 -07:00
puppet_3x_function_handler_spec.rb (PDOC-27) Don't require options for 3x functions 2015-02-12 14:22:53 -08:00
puppet_4x_function_handler_spec.rb (PDOC-21) Typecheck documented parameters 2015-07-15 11:58:36 -07:00
template_helper_spec.rb (PDOC-21) Typecheck documented parameters 2015-07-15 11:58:36 -07:00