-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
Add support for basic html tags #93
Comments
Oh, that's an interesting point. Checking images would indeed be helpful, if we succeed to implement #92. Anchors are handled at the moment, but it would be really nice to see which other HTML tags can make sense in the documentation. E.g. I often use spoilers, but here we probably don't have anything to verify... |
I don't think we handle anchor tags at the moment. We do handle From
|
On that point, we should also support for target locations (i.e. |
@Sereja313 now switched to another project, he likely won't be able to work on this task. @Sereja313 if you have begun working on it and have something to share, or if you suddenly come to implement this issue for some personal preference, I dunno, please mention this here. |
@Martoon-00 I'm going to finish the PR for this issue this week. |
Ah, great then 👍 |
@Sereja313 How is it going? If you see that you completely lack time, feel free to just leave a WIP PR where part of the work is done. |
Yes, I've been a bit busy, sorry... I'll have some free time tomorrow. |
Problem: HTML tags can be used in a markdown file. We should add support for basic HTML tags embedded in markdown file. Solution: Add support for image tags (<img src="link">), anchor hyperlinks (<a href="link">Text</a>) and anchor target locations (<a name="loc"> or <a id="loc">).
Great, thanks for posting the PR 👍 I think we will take it from now on (unless you'd like to follow the PR until it's merged). |
Clarification and motivation
HTML tags can be used in a markdown file.
For example, in our own readme, we have a
<img>
tag:We should add support for basic HTML tags (embedded in markdown files), such as:
<img src="link">
<a href="link">Text</a>
<a name="loc">
or<a id="loc">
We should investigate which other tags we want to support.
Acceptance criteria
xrefcheck
verifies whether anchors and image tags (and possibly others) are valid.The text was updated successfully, but these errors were encountered: