/// Turn Markdown 4-space indented code into HTML pre code blocks
(string text)
| 1244 | /// /// Turn Markdown 4-space indented code into HTML pre code blocks |
| 1245 | /// </summary> |
| 1246 | private string DoCodeBlocks(string text) |
| 1247 | { |
| 1248 | text = _codeBlock.Replace(text, new MatchEvaluator(CodeBlockEvaluator)); |
| 1249 | return text; |
| 1250 | } |
| 1251 | |
| 1252 | private string CodeBlockEvaluator(Match match) |
| 1253 | { |