🔥 My Test Topic (Nothing Interesting)

Sorry @omnitrio - I’m using your ‘Test Topic’ for mine too :scorv::scorv::scorv: Dunno why I didn’t think of it myself.

So, something like this might come in handy for build guide makers:

<abbr title='Shattered&nbsp;Realm'>SR</abbr>

SR


An abbreviation tag. Lets you mouse over the abbreviated word to see the full word. You have to insert a &nbsp; ««« Go ahead mouse-over it :smile: Ha.

You have to insert a &nbsp; in-between two words, or more, that would normally have a space there otherwise it will only display one word on the pop-up.



<p>If you want to tell a reader to enter some text <kbd>you can use these kbd tags</kbd> to indicate what to type in.</p>

If you want to tell a reader to enter some text you can use these kbd tags to indicate what to type in.


You can even use the <kbd> tags in your <details>… check out what I did with them in my guide:
[HOW-TO] Use This Forum Effectively

Spiffy.



Other things that ‘work’ in Discourse.

<p>The following word uses a <strike>strikethrough</strike> typeface.</p>

<p>The following word uses a <sup>superscript</sup> typeface.</p>

<p>The following word uses a <sub>subscript</sub> typeface.</p>

<p>I want to drink <del>cola</del> <ins>wine</ins></p>

<p>The following word uses a <big>big</big> typeface.</p>

<p>The following word uses a <small>small</small> typeface.</p>

The following word uses a strikethrough typeface.

The following word uses a superscript typeface.

The following word uses a subscript typeface.

I want to drink cola wine

The following word uses a big typeface.

The following word uses a small typeface.




Alright this was a pain to figure out how to do but I eventually did it. Basically, the ‘Grid Gallery’ button option we have in the editor here to lay out images side-by-side doesn’t work in the ‘Details’. It shows up in the ‘preview panel’ as if it is working but once you commit it, it throws 'em out vertical. Like so:

<details><summary><font size=5><kbd>Screenshots</kbd></font></summary>

<div data-theme-tiles="2">

![uy29Mdg|300x500,50%](upload://cN5NkY432e483J9Bn4N3SY7q16X.png)   ![jbxzhy5|302x500,50%](upload://awsRqpQ8TlpNGq5My5mhVzZk6gg.png)

</div>

</details>

Screenshots


Bummer. So I wanted to figure out how make that work. The answer: <table>

<details><summary><font size=5><kbd>Screenshots</kbd></font></summary>

<br>

<table><tr><td>

![uy29Mdg|300x500,50%](upload://cN5NkY432e483J9Bn4N3SY7q16X.png)

</td><td>

![jbxzhy5|302x500,50%](upload://awsRqpQ8TlpNGq5My5mhVzZk6gg.png)

</td></tr></table>

</details>

Screenshots


There ya have it.

1 Like