We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50b3b73 commit eddfdaeCopy full SHA for eddfdae
markdownify/main.py
@@ -28,12 +28,15 @@ def main(argv=sys.argv[1:]):
28
parser.add_argument('--default-title', action='store_false',
29
help="A boolean to enable setting the title of a link to its "
30
"href, if no title is given.")
31
- parser.add_argument('--heading-style',
+ parser.add_argument('--heading-style', default='UNDERLINED',
32
choices=('ATX', 'ATX_CLOSED', 'SETEXT', 'UNDERLINED'),
33
help="Defines how headings should be converted.")
34
parser.add_argument('-b', '--bullets', default='*+-',
35
help="A string of bullet styles to use; the bullet will "
36
"alternate based on nesting level.")
37
+ parser.add_argument('--strong-em-symbol', default='ASTERISK',
38
+ choices=('ASTERISK', 'UNDERSCORE'),
39
+ help="Use * or _ to convert strong and italics text"),
40
parser.add_argument('--sub-symbol', default='',
41
help="Define the chars that surround '<sub>'.")
42
parser.add_argument('--sup-symbol', default='',
0 commit comments