We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
final doc = const ParchmentMarkdownCodec().decode(''' paragraph - a - b - c ''');
The unordered list is not recognized.
line 39 is:
static final _ulRegExp = RegExp(r'^( *)\* +(.*)');
and should be:
static final _ulRegExp = RegExp(r'^( *)[-\*\+] +(.*)');
There is also
ParchmentAttribute.ul: '* ',
which should probably be customizable, since it depends heavily on locale and context (for example, in books - is commonly used, not *).
Here is markdown recommendation: https://www.markdownguide.org/basic-syntax/#unordered-lists. Unordered list items can start with -, *, and +.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to Reproduce
The unordered list is not recognized.
line 39 is:
and should be:
There is also
which should probably be customizable, since it depends heavily on locale and context (for example, in books - is commonly used, not *).
Here is markdown recommendation: https://www.markdownguide.org/basic-syntax/#unordered-lists. Unordered list items can start with -, *, and +.
The text was updated successfully, but these errors were encountered: