File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ addition to the block types defined by the [CommonMark specification](https://co
66
66
[ GitHub Flavored Markdown specification] ( https://github.github.com/gfm/ ) with one extension: within a table
67
67
block it is possible to escape newline characters to enable cell text to be written on multiple lines. Here is an example:
68
68
69
- ``` markdown
69
+ ```
70
70
| Column 1 | Column 2 |
71
71
| ------------ | -------------- |
72
72
| This text \
@@ -89,9 +89,12 @@ Since `MarkdownParser` objects are stateless (beyond the configuration of block
89
89
transformers), there is a predefined default ` MarkdownParser ` object accessible via the static property
90
90
` MarkdownParser.standard ` . This default parsing object is used in the example above.
91
91
92
- New markdown parsers with different configurations can also be created by subclassing ` MarkdownParser `
92
+ New markdown parsers with different configurations can also be created by subclassing
93
+ [ ` MarkdownParser ` ] ( https://github.com/objecthub/swift-markdownkit/blob/master/Sources/MarkdownKit/Parser/MarkdownParser.swift )
93
94
and by overriding the class properties ` defaultBlockParsers ` and ` defaultInlineTransformers ` . Here is
94
- an example how class ` ExtendedMarkdownParser ` is derived from ` MarkdownParser ` simply by overriding
95
+ an example how class
96
+ [ ` ExtendedMarkdownParser ` ] ( https://github.com/objecthub/swift-markdownkit/blob/master/Sources/MarkdownKit/Parser/ExtendedMarkdownParser.swift )
97
+ is derived from ` MarkdownParser ` simply by overriding
95
98
` defaultBlockParsers ` and by specializing ` standard ` in a covariant fashion.
96
99
97
100
``` swift
You can’t perform that action at this time.
0 commit comments