-
Notifications
You must be signed in to change notification settings - Fork 32
Icons #1413
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
Merged
Merged
Icons #1413
Changes from 4 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
7808089
PoC: Icons
reakaleek 69b43a4
Update docs/syntax/icons.md
reakaleek 874632f
Update docs/syntax/icons.md
reakaleek 96a32a7
Add aria-label
reakaleek 6f62f40
Use output/markdown pattern in docs
reakaleek e45efec
Remove `i`-prefix from icon syntax
reakaleek 7ccba83
Fix docs
reakaleek 6769762
Fix docs
reakaleek 9dd4ee6
Naming
reakaleek d3d7b10
Refactor to role instead of inline parser
reakaleek 66780ca
cleanup
reakaleek 660e08b
Merge branch 'main' into feature/icons
reakaleek d0fd929
cleanup
reakaleek 79c8154
Naming
reakaleek 66337ea
table styling
reakaleek 36b67d2
Simplify test
reakaleek 91fc82b
Remove obsolete surpress message
reakaleek File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Not an issue in the PR, but in GH) What a weird false positive... If you open this in a hex editor, U+2009 (
0xE2 0x80 0x89) is nowhere to be seen.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, you mean the error in the failing test. I was not able to find a difference and I don't think this error will cause any troubles in production.
We might feel the pain when we add tests in the future 😅
But I think the simplified test is testing the necessary parts. Which is fine.
Thank you for checking.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you're referring to the docs-build hints, it's not a false positive, the character really is invisible. It should be a space or not a space. Easy to catch with a regex such as
\u2009if I remember well. I fixed most of those in another PR, so a rebase should do the trick.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. I had a test that was failing only in windows.
The error said that the output doesn't match the expected. But it was exactly the same.
Hence, @cotti suspected that there must be a weird space or something.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah sorry, I actually misunderstood this haha :D