|
| 1 | +<!-- |
| 2 | +GENERATED FILE - DO NOT EDIT |
| 3 | +This file was generated by [MarkdownSnippets](https://github.com/SimonCropp/MarkdownSnippets). |
| 4 | +Source File: /README.source.md |
| 5 | +To change this file edit the source file and then run MarkdownSnippets. |
| 6 | +--> |
| 7 | + |
1 | 8 | # Meet ReverseMarkdown |
2 | 9 |
|
3 | 10 | [](https://ci.appveyor.com/project/BabuAnnamalai/reversemarkdown-net) [](https://travis-ci.org/mysticmind/reversemarkdown-net) [](https://www.nuget.org/packages/ReverseMarkdown/) |
@@ -57,15 +64,16 @@ var converter = new ReverseMarkdown.Converter(config); |
57 | 64 | ## Configuration options |
58 | 65 |
|
59 | 66 | * `GithubFlavored` - Github style markdown for br, pre and table. Default is false |
| 67 | +* `ListBulletChar` - Allows to change the bullet character. Default value is `-`. Some systems expect the bullet character to be `*` rather than `-`, this config allows to change it. Available in v3.12.0. |
60 | 68 | * `RemoveComments` - Remove comment tags with text. Default is false |
61 | 69 | * `SmartHrefHandling` - how to handle `<a>` tag href attribute |
62 | 70 | * `false` - Outputs `[{name}]({href}{title})` even if name and href is identical. This is the default option. |
63 | 71 | * `true` - If name and href equals, outputs just the `name`. Note that if Uri is not well formed as per [`Uri.IsWellFormedUriString`](https://docs.microsoft.com/en-us/dotnet/api/system.uri.iswellformeduristring) (i.e string is not correctly escaped like `http://example.com/path/file name.docx`) then markdown syntax will be used anyway. |
64 | | - |
| 72 | + |
65 | 73 | If `href` contains `http/https` protocol, and `name` doesn't but otherwise are the same, output `href` only |
66 | | - |
| 74 | + |
67 | 75 | If `tel:` or `mailto:` scheme, but afterwards identical with name, output `name` only. |
68 | | -* `UnknownTags` - handle unknown tags. |
| 76 | +* `UnknownTags` - handle unknown tags. |
69 | 77 | * `UnknownTagsOption.PassThrough` - Include the unknown tag completely into the result. That is, the tag along with the text will be left in output. This is the default |
70 | 78 | * `UnknownTagsOption.Drop` - Drop the unknown tag and its content |
71 | 79 | * `UnknownTagsOption.Bypass` - Ignore the unknown tag but try to convert its content |
|
0 commit comments