Transform any Markdown-style horizontal rules in a copy of the specified str and return it.
Source Code
# File bluecloth.rb, line 454 def transform_hrules( str, rs ) @log.debug " Transforming horizontal rules" str.gsub( /^( ?[\-\*_] ?){3,}$/, "\n<hr#{EmptyElementSuffix}\n" ) end
<code/>and<pre/>for code samples.