Formatting on the Forums
-
A Former User last edited by admin
It took me a tinkering to properly show the example above: these forums' markup gets something corrupted
The only real problem I have seen is the fact that emphasis via * and _ does not work as it should. Other than that It seems to be pretty much on spec.
Nah, see this:
<http://forums.opera.com/post/59190>
-
blackbird71 last edited by
...
Once again it is the exact same problem _ being interpreted as emphasis. You will notice _ is removed from the links. The bit between two links with underscores would have been emphasised.Slaps head! Wow, my brain's neurons must be firing slow today! Suddenly I see what you're getting at. I forgot that the underscore symbol is a Markdown parsing key... and two of them denote the text in between for embolding.
Frankly, this is one of the big gripes I have with Markdown: seemingly ordinary language symbols (and so many different ones, at that) act as triggers for parsing actions that only occur if a duplicate/paired symbol appears later on. I much prefer the systems where certain symbols are simply 'reserved' for parsing functionality, such that if only one appears, a parsing error immediately occurs before the message is accepted by the server and generates a corresponding error reply to the poster.
-
A Former User last edited by admin
You bastard!
1, you edited my comment and didn't indicate it'd been edited!
<del title="edit">Second - see for yourself!! :/~~O'k, you've seen...Well, for the record, my original input was just
(now I tinkered a bit more to reproduce my input with those "backlashes")
-
ruario last edited by
You bastard! 1, you edited my comment and didn't indicate it'd been edited!
No I was testing. It is back exactly as it was.
Putting Markdown links within `` (code tags) does occasionally seem to trigger "oddness" where the interpretter tries to do you a favour by escaping but it is quite a corner case. Just use
&lt;
and&gt;
in this specific case.In fact, whenever you find things tricky you can just use HTML. That is one of the nice things about Markdown. Just can use HTML directly. In fact you could use it for all your posts.
-
A Former User last edited by
Just use < and > in this specific case.
What do you mean - how to use it? And why?
In my "<
kbd>
" there weren't anygt
s! -
ruario last edited by admin
Frankly, this is one of the big gripes I have with Markdown
So just write your entire posts in HTML.
P.S. I corrected https://forums.opera.com/post/59149 for you
-
A Former User last edited by
In fact, whenever you find things tricky you can just use HTML. That is one of the nice things about Markdown. Just can use HTML directly. In fact you could use it for all your posts.
Wrong!
If you read the previous pages here, you'd figure out that all of the HTML 'coding' elements have already been tested - they do not work as one could hope them to. -
A Former User last edited by
Reload. That specific example took some doing!
I ain't gonna learn all those character "codes" by heart. Even if I knew how or where one would need them*:P*
-
blackbird71 last edited by admin
...
P.S. I corrected https://forums.opera.com/post/59149 for youThank you!
-
A Former User last edited by
@joshl Not in my experience. I use "<kbd>" in many of posts for example.
You use - I test*:P*
Yourour kbd doesn't kbd everything (in Russian it sounded much funnier). -
ruario last edited by
@joshl Since you obviously like this kind of thing, I would make sure you read the entire syntax page, rather than the basics page we link to below (assuming you haven't already done this).
The syntax page, explains the corner cases and details of embedding HTML more completely.
-
A Former User last edited by
Ruario, by the way, can I use some "character encoder" or something?
I saw you just use those "labada" replacements*:)* -
A Former User last edited by
Ruario, would you please stop *@*ing me? I'm the starter of this thread, so I get "nots" anyway.
-
ruario last edited by
can I use some "character encoder" or something?
Is this what you are looking for?
http://dev.w3.org/html5/html-author/charref
P.S. I didn't know you actually received a notification. I don't perhaps because I am an employee or some other weirdness with my account.
-
A Former User last edited by
@joshl Since you obviously like this kind of thing, I would make sure you read the entire syntax page, rather than the basics page we link to below (assuming you haven't already done this).
The syntax page, explains the corner cases and details of embedding HTML more completely.It's all nice, but personally, I'd prefer that/if the basics would work as they should do - like those "emphasis" and other things ("promised" in that page every user can link to).
can I use some "character encoder" or something?
Is this what you are looking for?
http://dev.w3.org/html5/html-author/charrefI'll take a look.
Though for now, for most purposes those "backlashes" are enough. -
ruario last edited by
It's all nice, but personally, I'd prefer that/if the basics would work as they should do
They do with the exception of "emphasis". Most of the other stuff that initially seems odd, makes sense if you read the syntax guide.
In any case, you can just write HTML, with the limitation that only a subset is made available, roughly the same tags you would get with Markdown, plus a few extra.
-
ruario last edited by
An example of a basic usage you claimed did not work was numbered lists but they work just fine
- First
- Second
- Third
The problem seems to be that you left blank lines between items but the guide specifically tells you not to do this
If you put blank lines between items, you’ll get <p> tags for the list item text.