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?
j.jaffeux
(Joffrey Jaffeux)
13 Junio, 2018 15:01
2
Builder Version: 1.0.0
Makeroid Andromeda
remove the “`” around “Makeroid Andromeda”.
1 me gusta
But I want to show it as “code”
I know it’s working without it
j.jaffeux
(Joffrey Jaffeux)
13 Junio, 2018 15:19
4
2 Me gusta
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 Me gusta
j.jaffeux
(Joffrey Jaffeux)
13 Junio, 2018 18:49
6
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 me gusta
sam
(Sam Saffron)
13 Junio, 2018 22:43
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 Me gusta