There’s a little bug when using “a lot” of text formatting elements
Check this example:
You see that I’ve used the <kbd>
tag, right?
Well, I’ve used some more things, but I can’t see them:
# <kbd> [Builder](http://builder.makeroid.io) Version: `1.0.0` <small>[`Makeroid Andromeda`](https://community.makeroid.io/t/makeroid-andromeda/5031?u=barreeeiroo) :star2: </small></kbd>
Why is the <small>[`Makeroid Andromeda`](https://community.makeroid.io/t/makeroid-andromeda/5031?u=barreeeiroo) :star2: </small>
part not being displayed?
Builder Version: 1.0.0
Makeroid Andromeda
remove the “`” around “Makeroid Andromeda”.
1 Like
But I want to show it as “code”
I know it’s working without it
The simple solution is to not nest HTML and Markdown eg.
<kbd> <a href="http://builder.makeroid.io">Builder</a> Version:
1.0.0<small><a href="https://community.makeroid.io/t/makeroid-andromeda/5031?u=barreeeiroo">Makeroid Andromeda</a> :star2: </small></kbd>
Builder Version: 1.0.0
Makeroid Andromeda
2 Likes
No it’s still not the expected result. You are not wrapping “Makeroid Andromeda” in “`”
If I do this, it disappears as the other:
Builder Version: 1.0.0
Makeroid Andromeda
1 Like
sam
(Sam Saffron)
June 13, 2018, 10:43pm
7
This is by design @awesomerobot added:
kbd * * * {
display: none;
}
To protect us from all sorts of abuse vectors.
Note: on your forum you can remove the rule in a theme component, by overriding it, if you do not care for the abuse protection.
8 Likes