<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Formatting with Markdown]]></title><description><![CDATA[<h1>Formatting with Markdown</h1>
<p dir="auto">The following is a <em>very</em> basic guide on how to format your comments with <a href="http://daringfireball.net/projects/markdown/" target="_blank" rel="noopener noreferrer nofollow ugc">Markdown</a> (or equivalent HTML tags).</p>
<h2>Quick summary</h2>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;th&gt;What you type&lt;/td&gt;<br />
&lt;th&gt;How it will display&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;<a href="https://forums.opera.com">https://forums.opera.com</a>&gt;&lt;/td&gt;<br />
&lt;td&gt;<a href="https://forums.opera.com/">https://forums.opera.com</a>&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;[the forums](<a href="https://forums.opera.com">https://forums.opera.com</a>)&lt;/td&gt;<br />
&lt;td&gt;<a href="https://forums.opera.com/">the forums</a>&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<em>emphasis</em>&lt;/td&gt;<br />
&lt;td&gt;&lt;em&gt;emphasis&lt;/em&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<strong>strong</strong>&lt;/td&gt;<br />
&lt;td&gt;<strong>strong</strong>&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<code>monospaced &amp;lt;code&amp;gt;</code> &lt;/td&gt;<br />
&lt;td&gt;<code>monospaced &amp;lt;code&amp;gt;</code> &lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;- List item</p>
<ul>
<li>List item</li>
<li>List item&lt;/td&gt;<br />
&lt;td&gt;• List item<br />
• List item<br />
• List item&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&gt; Block of quoted text&lt;/td&gt;<br />
&lt;td&gt;&lt;blockquote&gt;Block of quoted text&lt;/blockquote&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;    Use four spaces at the beginning of each line to indicate<br />
    a block of preformatted text, such as code samples&lt;/td&gt;<br />
&lt;td&gt;</li>
</ul>
<pre><code>`Use four spaces at the beginning of each line to indicate
a block of preformatted text, such as code samples.`
</code></pre>
<p dir="auto">&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<h5>Avoiding common problems</h5>
<ul>
<li>Add a blank line before and after paragraphs, lists, quotes or blocks of preformatted text.</li>
<li>A single Enter ↵ should be used between list items.</li>
<li>To force a line break put two spaces at the end of the line or press Enter ↵ twice to start a new paragraph.</li>
<li>You may have to escape characters that have special meaning to Markdown by adding a backslash. <a href="http://daringfireball.net/projects/markdown/syntax#backslash" target="_blank" rel="noopener noreferrer nofollow ugc">See the backslash escapes section</a> of Daring Fireball for more information.</li>
</ul>
<hr />
<h2>More details</h2>
<h3>Links</h3>
<p dir="auto">Add basic links by enclosing the URLs in angle brackets <code>&amp;lt;&amp;gt;</code>:</p>
<pre><code>`&amp;lt;http://example.com/&gt;`
</code></pre>
<p dir="auto">It will display as:</p>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<a href="http://example.com/" target="_blank" rel="noopener noreferrer nofollow ugc">http://example.com/</a>&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p dir="auto"><strong>Note</strong>: Using angle brackets is not always necessary but it avoids problems with URLs getting corrupted by the formatting options.</p>
<p dir="auto">You can create embedded links like this:</p>
<pre><code>This is an [example link](http://example.com/)
</code></pre>
<p dir="auto">It will display as:</p>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;This is an <a href="http://example.com/" target="_blank" rel="noopener noreferrer nofollow ugc">example link</a>&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<h5>HTML equivalent</h5>
<p dir="auto">Use the <code>&amp;lt;a&amp;gt;</code> anchor (link) tag.</p>
<hr />
<h3>Emphasis</h3>
<p dir="auto">You can make text bold by enclosing the text in double asterisks:</p>
<pre><code>The last word in this sentence is **bold**
</code></pre>
<p dir="auto">It will display as:</p>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;The last word in this sentence is <strong>bold</strong>&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<h5>HTML equivalent</h5>
<p dir="auto">Use the <code>&amp;lt;strong&amp;gt;</code> important text tag.</p>
<hr />
<h3>Lists</h3>
<p dir="auto">You can make unordered (bulleted) lists by starting your lines with dashes, followed by a space:</p>
<pre><code>- List item
- List item
</code></pre>
<p dir="auto">It will display as:</p>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;ul&gt;&lt;li&gt;List item&lt;/li&gt;&lt;li&gt;List item&lt;/li&gt;&lt;/ul&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p dir="auto">You can make an ordered (numbered) lists by starting your lines with <strong>1.</strong>, followed by a space:</p>
<pre><code>1. Item 1
2. Item 2
</code></pre>
<p dir="auto">It will display as:</p>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;ol&gt;&lt;li&gt;Item 1&lt;/li&gt;&lt;li&gt;Item 2&lt;/li&gt;&lt;/ol&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p dir="auto"><strong>Note</strong>: Lists should start with an extra blank line before the begining of the list and an extra blank line after the end of the list. There should be no additional blank lines between list items.</p>
<h5>HTML equivalent</h5>
<p dir="auto">Use the <code>&amp;lt;ul&amp;gt;</code>, <code>&amp;lt;ol&amp;gt;</code> and <code>&amp;lt;li&amp;gt;</code> list tags.</p>
<hr />
<h3>Quoting</h3>
<p dir="auto">You can quote another individual by starting the line with a right angle bracket <code>&amp;gt;</code>:</p>
<pre><code>&gt; I think Opera is the best browser
</code></pre>
<p dir="auto">It will display as:</p>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;blockquote&gt;I think Opera is the best browser&lt;/blockquote&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p dir="auto"><strong>Note</strong>: Quotes should start with an extra blank line before the start of the quote and end with an extra blank line.</p>
<h5>HTML equivalent</h5>
<p dir="auto">Use the <code>&amp;lt;blockquote&amp;gt;</code> blockquote tag.</p>
<hr />
<h3>Computer code</h3>
<p dir="auto">You can provide example computer code (monospaced) by enclosing the text in grave accents (backticks):</p>
<pre><code>You need to enter the command: `opera-developer`
</code></pre>
<p dir="auto">It will display as:</p>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;You need to enter the command: <code>opera-developer</code>&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p dir="auto">If want to provide a block of code spanning multiple lines, start each new line with four spaces:</p>
<pre><code>`    $ echo hello world
    hello world`
</code></pre>
<p dir="auto">It will display as:</p>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;</p>
<pre><code>`$ echo hello world
hello world`
</code></pre>
<p dir="auto">&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p dir="auto"><strong>Note</strong>: Multiline blocks of code should start with an extra blank line before you begin indenting with spaces and an extra blank line after your code block has ended.</p>
<h5>HTML equivalent</h5>
<p dir="auto">Use the <code>&amp;lt;code&amp;gt;</code> code and <code>&amp;lt;pre&amp;gt;</code> preformatted text tags.</p>
<hr />
<h3>Images</h3>
<p dir="auto">You can insert images like this:</p>
<pre><code>![opera logo](https://forums.opera.com/themes/opera/design/static/css/img/opera-software-logo.png)
</code></pre>
<p dir="auto">It will display as:</p>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<h5>HTML equivalent</h5>
<p dir="auto">Use the <code>&amp;lt;img&amp;gt;</code> image tag.</p>
<hr />
<h3>Headings</h3>
<p dir="auto">You can insert headings by underling text with an equals symbol <code>=</code> or a dash <code>-</code>:</p>
<pre><code>Major Heading
=============

Sub Heading
-----------
</code></pre>
<p dir="auto">It will display as:</p>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;h1&gt;Major Heading&lt;h2&gt;Sub Heading&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p dir="auto"><strong>Note</strong>: Headings should start with an extra blank line before they begin and an extra blank line after they end.</p>
<h5>HTML equivalent</h5>
<p dir="auto">Use the <code>&amp;lt;h1&amp;gt;</code>, <code>&amp;lt;h2&amp;gt;</code>, <code>&amp;lt;h3&amp;gt;</code>, <code>&amp;lt;h4&amp;gt;</code>, <code>&amp;lt;h5&amp;gt;</code> and <code>&amp;lt;h6&amp;gt;</code> heading tags.</p>
<hr />
<h3>Horizontal rules</h3>
<p dir="auto">You can insert horizontal rules with three dashes on a line of their own line:</p>
<pre><code>---
</code></pre>
<p dir="auto">It will display as:</p>
<p dir="auto">&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;hr&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p dir="auto"><strong>Note</strong>: Horizontal rules should start with an extra blank line before they begin and an extra blank line after they end.</p>
<h5>HTML equivalent</h5>
<p dir="auto">Use the <code>&amp;lt;hr&amp;gt;</code> horizontal rule tag.</p>
<hr />
<h4>Additional HTML tags</h4>
<ul>
<li><code>&amp;lt;i&amp;gt;</code> Italic text</li>
<li><code>&amp;lt;s&amp;gt;</code> Incorrect (strikethrough) text</li>
<li><code>&amp;lt;u&amp;gt;</code> Underlined text</li>
<li><code>&amp;lt;table&amp;gt;</code> Table layout</li>
</ul>
<p dir="auto">The above all currently work but should generally be avoided since they have no Markdown equivalents and hence could be removed from the forum. Further tags may also work but are largely untested and unneeded. They should also be avoided.</p>
<hr />
<h4>Further reading</h4>
<p dir="auto">For even more detail, refer to the <a href="http://daringfireball.net/projects/markdown/syntax" target="_blank" rel="noopener noreferrer nofollow ugc">Markdown syntax guide</a>.</p>
<hr />
<p dir="auto">P.S. This post was formatted using only Markdown and HTML options that are available to everyone on the forum.</p>
<p dir="auto"><a href="https://forums.opera.com/topic/5342/faq/1">Back to Tips and FAQs</a></p>
]]></description><link>https://forums.opera.com/topic/6692/formatting-with-markdown</link><generator>RSS for Node</generator><lastBuildDate>Tue, 21 Apr 2026 15:01:52 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/6692.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 25 Nov 2014 14:11:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Formatting with Markdown on Mon, 07 Dec 2015 17:45:46 GMT]]></title><description><![CDATA[<p dir="auto">I used angles in my example - it worked.<br />
Try backticks, if you wish.<br />
What I'm having in mind is that there must be found a way - or two, simple one(s) - that we can <strong>officially</strong> recommend to users, especially new ones.<br />
The backtick might be harder to find on one's keyboard, but the angles - they must be pretty common, right? And it does work as it seems.</p>
]]></description><link>https://forums.opera.com/post/89320</link><guid isPermaLink="true">https://forums.opera.com/post/89320</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Mon, 07 Dec 2015 17:45:46 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Mon, 07 Dec 2015 16:47:31 GMT]]></title><description><![CDATA[<p dir="auto">I believe you can probably double it like__this, and of course HTML/C style character escapes (backslash before the character) _ ... and I believe it recognizes quotation marks "_".</p>
<p dir="auto">Hmm, the doubled one still looks doubled, so no help. But the escaped one is fine (as expected).</p>
]]></description><link>https://forums.opera.com/post/89314</link><guid isPermaLink="true">https://forums.opera.com/post/89314</guid><dc:creator><![CDATA[sgunhouse]]></dc:creator><pubDate>Mon, 07 Dec 2015 16:47:31 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Mon, 07 Dec 2015 10:20:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/64">@sgunhouse</a></p>
<blockquote>
<p dir="auto">No problem. The forum swallows underlines (interpreting them as formatting characters). Since I saw the italics in your post - and the BBcode - I knew exactly what happened.</p>
</blockquote>
<p dir="auto">What if you put it within a pair of angles or backticks?<br />
:idea:</p>
<p dir="auto">Testing: "<a href="https://en.wikipedia.org/wiki/Timeline_of_natural_history#Neoarchean_Era" target="_blank" rel="noopener noreferrer nofollow ugc">https://en.wikipedia.org/wiki/Timeline_of_natural_history#Neoarchean_Era</a>" <img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=o7miklbo7rs" class="not-responsive emoji emoji-emoji-one emoji--confused_face" title=":confused:" alt="😕" /></p>
]]></description><link>https://forums.opera.com/post/89291</link><guid isPermaLink="true">https://forums.opera.com/post/89291</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Mon, 07 Dec 2015 10:20:10 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Thu, 23 Jul 2015 15:58:54 GMT]]></title><description><![CDATA[<p dir="auto">@jetro</p>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">How do you get Enter in this thing stupid #%#¤"&amp;% forum type..</p>
</blockquote>
<p dir="auto">What do you mean?</p>
</blockquote>
</blockquote>
<p dir="auto">I type Enter to get a new line, but it won't register it. So I made loads of lines, and it interprets it as one line. That's why I thought this code interpretation for a forum was really annoying. I expressed it quite badly, sorry.</p>
</blockquote>
<p dir="auto">Take a read of this thread, Jetro.</p>
]]></description><link>https://forums.opera.com/post/80360</link><guid isPermaLink="true">https://forums.opera.com/post/80360</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Thu, 23 Jul 2015 15:58:54 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Sat, 03 Jan 2015 10:40:01 GMT]]></title><description><![CDATA[<p dir="auto">Yes, imho the parser code for usernames has a bug. the - is a allowed character in usernames, so the parser should not stop creating the profile link.</p>
]]></description><link>https://forums.opera.com/post/63109</link><guid isPermaLink="true">https://forums.opera.com/post/63109</guid><dc:creator><![CDATA[Deleted User]]></dc:creator><pubDate>Sat, 03 Jan 2015 10:40:01 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Fri, 02 Jan 2015 21:23:23 GMT]]></title><description><![CDATA[<blockquote></blockquote>
<blockquote>
<blockquote>
<p dir="auto">Perhaps it'd be simpler just to get 'hyphenated' users to change their usernames...</p>
</blockquote>
</blockquote>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/1579">@blackbird71</a> Sorry, but my GwenDragon can not be reactivated here, so i had to use Gwen-Dragon  ...</p>
</blockquote>
<p dir="auto">It's not a problem for me, especially since I now have <a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/212">@ruario</a>'s "secret recipe" for how to enter such a name correctly here. But the forum notification system will probably not notify you if someone simply mentions your name in a forum post (which is what I originally was trying to do back at the beginning of all this)... assuming, of course, that you have notifications turned on. If somebody else simply enters @gwen-dragon to 'flag' you, the broken link becomes unrecognizeable, both by other users seeking your profile and by the system for notification purposes. <img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=o7miklbo7rs" class="not-responsive emoji emoji-emoji-one emoji--winking_face" title=";)" alt="😉" /></p>
]]></description><link>https://forums.opera.com/post/63089</link><guid isPermaLink="true">https://forums.opera.com/post/63089</guid><dc:creator><![CDATA[blackbird71]]></dc:creator><pubDate>Fri, 02 Jan 2015 21:23:23 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Fri, 02 Jan 2015 16:51:42 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">Perhaps it'd be simpler just to get 'hyphenated' users to change their usernames...</p>
</blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/1579">@blackbird71</a> Sorry, but my GwenDragon can not be reactivated here, so i had to use Gwen-Dragon <img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=o7miklbo7rs" class="not-responsive emoji emoji-emoji-one emoji--winking_face" title=";)" alt="😉" /></p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/212">@ruario</a> The autoformatting of the Markdown implementation in forum does not work user freindlich, what a pitty.</p>
]]></description><link>https://forums.opera.com/post/63059</link><guid isPermaLink="true">https://forums.opera.com/post/63059</guid><dc:creator><![CDATA[Deleted User]]></dc:creator><pubDate>Fri, 02 Jan 2015 16:51:42 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Wed, 31 Dec 2014 17:02:20 GMT]]></title><description><![CDATA[<p dir="auto">Thanks <a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/212">@ruario</a>. Perhaps it'd be simpler just to get 'hyphenated' users to change their usernames...<br />
<img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=o7miklbo7rs" class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes" title=":D" alt="😃" /></p>
]]></description><link>https://forums.opera.com/post/62933</link><guid isPermaLink="true">https://forums.opera.com/post/62933</guid><dc:creator><![CDATA[blackbird71]]></dc:creator><pubDate>Wed, 31 Dec 2014 17:02:20 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Wed, 31 Dec 2014 13:00:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/212">@ruario</a> That's definitely a mouthful O.O. As you say, it's not something one would wish to do every time.</p>
<p dir="auto">Using the <strong>Bold</strong> formatting to highlight a persons user-name could be a quicker temporary option (for now). Although not click-able, it still makes it easier to see who someone is referring to.</p>
]]></description><link>https://forums.opera.com/post/62925</link><guid isPermaLink="true">https://forums.opera.com/post/62925</guid><dc:creator><![CDATA[linuxmint7]]></dc:creator><pubDate>Wed, 31 Dec 2014 13:00:10 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Wed, 31 Dec 2014 11:43:01 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">What did you do to make it work?</p>
</blockquote>
<p dir="auto">I wrote the HTML code I used in <a href="/discussion/comment/15204267#Comment_15204267">my previous posting</a>.</p>
]]></description><link>https://forums.opera.com/post/62918</link><guid isPermaLink="true">https://forums.opera.com/post/62918</guid><dc:creator><![CDATA[ruario]]></dc:creator><pubDate>Wed, 31 Dec 2014 11:43:01 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Wed, 31 Dec 2014 11:20:49 GMT]]></title><description><![CDATA[<p dir="auto">What did you do to make it work?</p>
]]></description><link>https://forums.opera.com/post/62916</link><guid isPermaLink="true">https://forums.opera.com/post/62916</guid><dc:creator><![CDATA[Deleted User]]></dc:creator><pubDate>Wed, 31 Dec 2014 11:20:49 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Wed, 31 Dec 2014 10:01:05 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">Forget it, It doesn't work. <img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=o7miklbo7rs" class="not-responsive emoji emoji-emoji-one emoji--disappointed_face" title=":(" alt="😞" /></p>
</blockquote>
<p dir="auto">Or really? <a href="/profile/gwen-dragon">@gwen-dragon</a> <img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61b.png?v=o7miklbo7rs" class="not-responsive emoji emoji-emoji-one emoji--face_with_tongue" title=":P" alt="😛" /></p>
<pre><code>[&amp;#64;gwen-dragon](/profile/gwen-dragon)
</code></pre>
<p dir="auto">Yeah, ok you wouldn't want to do that every time. I agree it seems very broken!</p>
<p dir="auto">P.S. @ is an <strong>At</strong> symbol.</p>
]]></description><link>https://forums.opera.com/post/62915</link><guid isPermaLink="true">https://forums.opera.com/post/62915</guid><dc:creator><![CDATA[ruario]]></dc:creator><pubDate>Wed, 31 Dec 2014 10:01:05 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Wed, 31 Dec 2014 00:08:42 GMT]]></title><description><![CDATA[<p dir="auto">Forget it, It doesn't work. <img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=o7miklbo7rs" class="not-responsive emoji emoji-emoji-one emoji--disappointed_face" title=":(" alt="😞" /></p>
]]></description><link>https://forums.opera.com/post/62892</link><guid isPermaLink="true">https://forums.opera.com/post/62892</guid><dc:creator><![CDATA[linuxmint7]]></dc:creator><pubDate>Wed, 31 Dec 2014 00:08:42 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Tue, 30 Dec 2014 20:42:45 GMT]]></title><description><![CDATA[<p dir="auto">Hmm. Perhaps my brain isn't on top of things today... but I don't get what you're saying. I want to render a username as a profile link in a post, like @joshl, by simply typing the <s>ampersand</s> @ and the username as I've always done here. That works. But if I try that same thing with a username like gwen-dragon, I get @gwen-dragon... which, if you click on the red highlighted portion, takes you to an error message instead of their profile page.</p>
<p dir="auto">Edited to add: OK... now I see part of what you're saying. I misnamed the symbol I use - indeed it's not an "ampersand" (which is &amp; ), but instead a @ symbol. But the problem remains for the @ symbol, whatever its correct name. My question remains: how do I make a hyphenated username to work correctly as a profile link with that @ symbol?</p>
]]></description><link>https://forums.opera.com/post/62876</link><guid isPermaLink="true">https://forums.opera.com/post/62876</guid><dc:creator><![CDATA[blackbird71]]></dc:creator><pubDate>Tue, 30 Dec 2014 20:42:45 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Tue, 30 Dec 2014 17:57:52 GMT]]></title><description><![CDATA[<ol>
<li>It's not the ampersand.</li>
<li>Ruario has already explained it's not exactly the <em>Markdown</em>.</li>
</ol>
<ul>
<li>The thing stays anyway...  :rolleyes:</li>
</ul>
]]></description><link>https://forums.opera.com/post/62870</link><guid isPermaLink="true">https://forums.opera.com/post/62870</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Tue, 30 Dec 2014 17:57:52 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Tue, 30 Dec 2014 15:55:26 GMT]]></title><description><![CDATA[<p dir="auto">There are now some usernames in the forums with hyphens in the middle (eg: gwen-dragon). However, when I try to flag that with an ampersand in the usual manner to create a link to the user, the result is to only flag the first half of the username... and this breaks the correct link clickability. My understanding is that the ampersand flags the text that immediately follows as being html (for Markdown interpretation)... but the hyphen seems to end that interpretation process midstream. What is the best way to treat hyphenated usernames preceded by an ampersand, within a post made in Markdown?</p>
]]></description><link>https://forums.opera.com/post/62856</link><guid isPermaLink="true">https://forums.opera.com/post/62856</guid><dc:creator><![CDATA[blackbird71]]></dc:creator><pubDate>Tue, 30 Dec 2014 15:55:26 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Tue, 24 Oct 2017 09:30:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/64">@sgunhouse</a>:<br />
Steve, try using four spaces starting the line <a href="http://forums.opera.com/post/61482" target="_blank" rel="noopener noreferrer nofollow ugc">here</a>:idea:</p>
]]></description><link>https://forums.opera.com/post/61485</link><guid isPermaLink="true">https://forums.opera.com/post/61485</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Tue, 24 Oct 2017 09:30:44 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Tue, 24 Oct 2017 09:30:44 GMT]]></title><description><![CDATA[<p dir="auto">I reported it broken on October 24th.<br />
I've not been aware of it working since then.</p>
<p dir="auto"><a href="https://forums.opera.com/topic/6022/emoticons-on-edits">https://forums.opera.com/topic/6022/emoticons-on-edits</a></p>
<p dir="auto"><img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=o7miklbo7rs" class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://forums.opera.com/post/60188</link><guid isPermaLink="true">https://forums.opera.com/post/60188</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Tue, 24 Oct 2017 09:30:44 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Tue, 02 Dec 2014 16:18:26 GMT]]></title><description><![CDATA[<p dir="auto">Yes.</p>
]]></description><link>https://forums.opera.com/post/60120</link><guid isPermaLink="true">https://forums.opera.com/post/60120</guid><dc:creator><![CDATA[Deleted User]]></dc:creator><pubDate>Tue, 02 Dec 2014 16:18:26 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Tue, 02 Dec 2014 16:05:24 GMT]]></title><description><![CDATA[<p dir="auto">Ok yeah I get it now. Was this working previously?</p>
]]></description><link>https://forums.opera.com/post/60119</link><guid isPermaLink="true">https://forums.opera.com/post/60119</guid><dc:creator><![CDATA[ruario]]></dc:creator><pubDate>Tue, 02 Dec 2014 16:05:24 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Tue, 02 Dec 2014 15:57:29 GMT]]></title><description><![CDATA[<p dir="auto">I will test with this post.</p>
<p dir="auto"><strong>EDIT:</strong> I test with IE and Opera, I click on emoticons icon to show the others but nothing happens.</p>
]]></description><link>https://forums.opera.com/post/60118</link><guid isPermaLink="true">https://forums.opera.com/post/60118</guid><dc:creator><![CDATA[ruario]]></dc:creator><pubDate>Tue, 02 Dec 2014 15:57:29 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Tue, 02 Dec 2014 15:30:56 GMT]]></title><description><![CDATA[<p dir="auto">They do for me @sidneyneto</p>
]]></description><link>https://forums.opera.com/post/60116</link><guid isPermaLink="true">https://forums.opera.com/post/60116</guid><dc:creator><![CDATA[ruario]]></dc:creator><pubDate>Tue, 02 Dec 2014 15:30:56 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Tue, 02 Dec 2014 15:23:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/212">@ruario</a> Emoticons menu don't show up when editing a post, check that please.</p>
]]></description><link>https://forums.opera.com/post/60114</link><guid isPermaLink="true">https://forums.opera.com/post/60114</guid><dc:creator><![CDATA[Deleted User]]></dc:creator><pubDate>Tue, 02 Dec 2014 15:23:21 GMT</pubDate></item><item><title><![CDATA[Reply to Formatting with Markdown on Tue, 02 Dec 2014 13:12:34 GMT]]></title><description><![CDATA[<p dir="auto">It will be interesting to see how many posts suddenly get <em>emphasis</em>, that was there all along but never displayed until now. <img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=o7miklbo7rs" class="not-responsive emoji emoji-emoji-one emoji--winking_face" title=";)" alt="😉" /></p>
]]></description><link>https://forums.opera.com/post/60089</link><guid isPermaLink="true">https://forums.opera.com/post/60089</guid><dc:creator><![CDATA[ruario]]></dc:creator><pubDate>Tue, 02 Dec 2014 13:12:34 GMT</pubDate></item></channel></rss>