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
Link references affect the entire document, not just the container in which they are defined
https://github.com/dillonkearns/elm-markdown/blob/master/test-results/failing/GFM/Link%20reference%20definitions.md#example-187
See also the rest of the failing cases in that file for context.
Here's where the link reference definition parsing is done and the definitions are added to the dict:
elm-markdown/src/Markdown/Parser.elm
Lines 696 to 698 in c76fd35
And here's where the inline parsing is done and receives the dict of reference definitions:
Lines 152 to 153 in 9158bea
This is likely a more challenging fix, so not as well suited to a first-time contribution.
The text was updated successfully, but these errors were encountered:
nested link references definitions can be used at the top-level dillo…
1441e20
…nkearns#60 (by adding a parse phase for container)
another approach to nested link references dillonkearns#60 (by using …
83643f7
…rawBlockParser when a container is completed/close)
No branches or pull requests
https://github.com/dillonkearns/elm-markdown/blob/master/test-results/failing/GFM/Link%20reference%20definitions.md#example-187
See also the rest of the failing cases in that file for context.
Here's where the link reference definition parsing is done and the definitions are added to the dict:
elm-markdown/src/Markdown/Parser.elm
Lines 696 to 698 in c76fd35
And here's where the inline parsing is done and receives the dict of reference definitions:
elm-markdown/src/Markdown/Parser.elm
Lines 152 to 153 in 9158bea
This is likely a more challenging fix, so not as well suited to a first-time contribution.
The text was updated successfully, but these errors were encountered: