Hot answers tagged markdown-rendering
24
Use four spaces before your code?
List`1
Or use double backticks as in List`1 .
It looks like this: ``List`1``
See http://daringfireball.net/projects/markdown/syntax, linked to from the formatting question box.
Note: Extra spacing will be necessary if you want to have a backtick at the end of your code, e.g., foo` . This will keep it from consuming ...
22
Benefits
Compatibility with GitHub-Flavored Markdown and other Markdown libraries that support this de facto standard (and possibly its variants). This enables copy-pasting from gists or Markdown files within repositories, which can be useful on programming-related sites like Stack Overflow.
The triple backtick syntax is easier and faster to type than ...
17
This could easily be fixed by using a max-width: 100% on images rather than the current 640px.
Is there any specific reason why they opted to use an exact pixel size instead? If they're not going to change it, I might just add this style to my custom user styles because I think it actually makes the display of images better overall.
12
The "spoiler" block hides the text by making it the same color as the background. This has a number of advantages, but the primary one is probably that it lets you select the text and continue to view it even if you can't manage to keep a mouse cursor hovering over it. If they'd used a technique that actually removed the text from the page, or styled it ...
9
As suspected, this is indeed a WebKit bug, and apparently a long-outstanding one at that. They used overflow: hidden in the test case, but it appears to happen for any value of overflow besides visible. I'll see if I can come up with a suitable workaround, but if not I don't think there's much that can be done from this end.
9
I went ahead and made a userscript for this. See "kbd markup shortcuts" at stackapps. This script adds both a button and a keyboard shortcut (AltK) for adding <kbd></kbd> tags.
Read more about it at stackapps, or install it.
Copy of the latest source:
// ==UserScript==
// @name _Add kbd shortcut
// @namespace StackExchange
...
9
(This isn't a "this is fixed" answer; I'm just describing the problem for now).
I learned something new today. Look at HTMLTreeBuilder.cpp in the Chromium source and find the method called callTheAdoptionAgency. I'm serious.
The algorithm that checks what formatting element is closed by a closing HTML tag list limited to a certain search depth for ...
8
You can currently specify a language to be syntax-highlighted.
Example:
<!-- language: lang-js -->
//JS code...
This should not discourage the question, it is even a plus because they don't need to code this feature anymore.
The only thing left to do is to implement the ```` code blocks system (which I believe, is not that hard)
8
Well, in the meantime, here's a workaround which keeps the outer list as one single list (where Jeff's answer yields two separate lists):
1. Item 1
* SubItem 1a
* SubItem 1b<br><br>
1. Item 2
* SubItem 2a
* SubItem 2b
produces
Item 1
SubItem 1a
SubItem 1b
Item 2
SubItem 2a
SubItem 2b
8
This is an interesting, but not a show stopper. I hope that Jeff addresses it.
I think it is time to replace Markdown with something easier to parse and format, like WikiText. The PHP parser for Wikitext works really well and the new beta version of wikipedia has a javascript WYSIWYG editor with Office 7 style ribbon. Their editor is a lot more powerful ...
7
The improved Markdown/LaTeX separator now handles this case. I've made an edit to the post to force rebuilding the HTML – and remove the sentence noting that something is broken :) – and it now looks as expected.
Your minimal example now works correctly as well.
7
Fixed by just editing the question.
Sometimes old questions have bad formatting due to bugs in the markdown handling at the time the post was last saved. A lot of bugs have been fixed over time, but some require posts to be re-rendered before the displayed state is correct.
Editing forces a fresh rendering and fixes those issues - unless the bug hasn't ...
7
Here's the culprit:
There is no character limit for links. There are hidden characters after your opening parenthesis, which causes the link after it to get auto-linkified, and the identification text before it is rendered as normal text.
This is probably some weird side-affect of SE adding zero-width spacers in between text to break long blocks of ...
6
That's because this answer was posted before I made this change, and so its HTML was still created under the old rules, where a URL directly following an opening parenthesis would not be auto-linked. I have made a non-edit to the answer (just added a newline) to force re-rendering the answer with the new rules, and now the URLs are links.
6
No, these extra code elements are not rendered, they're added by the browser. If you look at the page source, you'll see this:
<p><code><pre>hello</pre></code></p>
So the Markdown engine allows you to shoot yourself in the foot; however it's up to the browser how to handle this invalid HTML (phrase elements are inline ...
6
It's tricky to mix code blocks and numbered lists. You need to indent the code blocks 8 spaces (4 to put them "inside" the numbered list and 4 to make them code blocks):
This markup:
1. foo bar:
some.code()
2. baz quux
produces this result:
foo bar:
some.code()
baz quux
5
Known issue with old posts - the renderer at the time had a bug and partial HTML was cached in the answer table for it.
Any edit to the answer will sort it (and has - I just opened for edit and saved).
Other threads on meta with the same issue (I am sure there are more):
Answer to question cut in the middle in question view, in full in edit view
...
5
This is long fixed; note that that answer is over three years old, so the HTML you saw was rendered way back then.
As you can see on the revision page, these days the HTML created from that Markdown is harmless. (Unlike the answers you see on the question page, the revision view is always rendered with today's Markdown converter.)
5
I'm pretty sure it's just the way that Markdown runs through things.
[Should HTML comments be stripped when validating answer length?](http://meta.stackoverflow.com/questions/25344/should-html-comments-be-stripped-when-validating-answer-length)
will become
<a ...
5
If you look at the generated HTML, it goes like this:
<ul>
<li>One</li>
<li><p>Two</p></li>
<li><p>Three</p></li>
<li>Four</li>
<li>Five</li>
</ul>
The Two has a blank line below it, so it's a paragraph. The Three has a blank line above it, so it's also a ...
5
Hm, interesting bug. In the meantime an inline link seems to work:
[tag:foo] [a hyperlink](http://google.com)
Results in; foo a hyperlink
Yey!
5
The most obvious is PHP Markdown.
That said, this is based on the original Markdown project by John Gruber, so won't necessarily contain the various improvements made by the SO team.
Whilst not directly relevant, there are some good blog posts and podcasts regarding the history and specific implementation of markdown on SO:
Coding Horror: Responsible ...
4
There is indeed at least one pattern: you have extra leading or trailing spaces in some of them, which are no longer allowed. It's by design because of tricksters who wish to subvert the minimum character comment input.
Beyond that -- bad checkin, I failed to check in complete code. So it's fixed now that all the code is checked in.
4
For github, like for displaying a mysql `table_name`, in regular text use \` (backslash backtick)
For showing backticks inside inline codeblocks `table_name` use double backticks with
extra spaces `` `table_name` `` around the inner single backticks.
To show the previous example explanation in an inline codeblock: `` `table_name` ``,
surround the whole in ...
4
It looks like the auto-linker passes in the URL as-is, the result of which is then fed to the method that handles bold/italics. This causes an <em> tag to appear in the href attribute of the link, the HTML sanitizer gets angry, and you end up with the mess that you see there.
The most direct fix seems to be to have the auto-linker do what the normal ...
4
You're looking for:
MarkdownSharp - C# Markdown processor
pagedown - A JavaScript Markdown converter and editor
prettify - A Javascript module and CSS file that allows syntax highlighting of source code snippets in an html page.
You can find the full supported Markdown syntax in the editing help page.
4
As mentioned in the comments, the issue here is the malformed HTML produced by the blockquote-in-list syntax used in the original post. This happens when the parser considers the content of the list item to be inline and doesn't run the inner content through the block gamut, leaving the > ... to be matched by the top-level blockquote parser.
The ...
4
Fixed in the next build. The problem here wasn't so much the link-within-the-link (it just made the problem very visible), but the underscore. Markdown escapes certain characters (like the underscore) in links, to prevent them from being treated as formatting characters. The two Markdown implementations use different escape characters for this: the ...
3
Just an example to show it:
The way to do it :
is to add moar spaces
This is code (bunch of spaces [8])
this is not code (4 spaces)
This caused because when the text is in a list, the parser takes a 4 spaces indentation for a normal (list) indentation. So you have to put another 4 spaces in order for it to recognize the code block.
Only top voted, non community-wiki answers of a minimum length are eligible
