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 b91a37b commit b41f2faCopy full SHA for b41f2fa
markdown/__init__.py
@@ -484,6 +484,10 @@ def markdownFromFile(*args, **kwargs):
484
c += 1
485
if c == len(pos):
486
break
487
+ if len(args):
488
+ warnings.warn('Positional arguments are pending depreacted in Markdown '
489
+ 'and will be deprecated in version 2.6. Use keyword '
490
+ 'arguments only.', PendingDeprecationWarning)
491
492
md = Markdown(**kwargs)
493
md.convertFile(kwargs.get('input', None),
0 commit comments