Tagged Questions
2
votes
1answer
102 views
Allow “title” attribute in allowed html <tags>
title is a Global HTML Attribute applicable to any HTML <tag> with the purpose of adding some 'extra information' to the contents of that tag. When used it's rendered as a tooltip with the ...
40
votes
2answers
274 views
Add a button for adding code highlighting for a specific language
Currently, the following code:
<!-- language: lang-php -->
<?php="test"?>
<!-- language: lang-xml -->
<bug cat="md" name="syntax">
Generates the following ...
12
votes
0answers
85 views
The editor's link functionality illegaly changes content inside code blocks [duplicate]
Possible Duplicate:
Adding a new link to a post messes up the code already present in the post
When adding / changing links in a post via the editor's "Hyperlink" button, the editor may ...
-4
votes
2answers
76 views
Allow the creation of links in formatted code through markdown or the GUI
As pointed out in this answer it is possible to create a link in formatted code. But, only by using explicit HTML. Since I think creating a link to documentation within a code block is a fairly common ...
-3
votes
1answer
58 views
Automatic code formatter (Ctrl+K) changes content
I've recently noticed a disturbing behavior of the code formatting shortcut (Ctrl + K) that seems to be completely invalid. It appears that applying Ctrl + K resulted in content change (which was ...
16
votes
0answers
105 views
Adding a new link to a post messes up the code already present in the post
In an answer, I was adding some links to the documentation, after I wrote some PHP code. As result, the code was altered.
Take as example the following code.
if (isset($item['load_functions'][1]) ...
1
vote
0answers
51 views
Markdown editor does not handle code correctly in lists
Note that this is not complaining about the fact that 8 spaces are needed for code in lists. It is complaining that the editor doesn't seem to respect this.
As Markdown specifies, 8 spaces are needed ...
3
votes
2answers
69 views
Why are image links by the editor not inline?
I see that image links have the URL at the bottom, which may confuse new users, and has become a minor nuisance at Ask Ubuntu, leaving unhandleable (due to the URL being lost) problems.
Is the ...
0
votes
0answers
37 views
Italic button in editor does nothing for partial words [duplicate]
Possible Duplicate:
WMD unable to render markup inside words
Bolding words that include an underscore doesn't work
If in a Stack Overflow question or answer text area I write
...
10
votes
0answers
59 views
Revision diff columns overflowing
I was editing a post, and I formatted the code better (markdown hates code with tab characters in it). When I was viewing the revisions (in source side-by-side diff mode), some of the lines were ...
-14
votes
1answer
86 views
Allow tweet embed
Would it be nice I believe that embedding a Tweet in a question/answer with Embedded Tweets feature would be a good way to make it clear you're quoting a tweet.
As I saw some posts today that used ...
5
votes
1answer
59 views
Shortcut key for 'change to web' in Add Image dialog
I, like several other, use shortcuts a lot and having the Editor with shortcuts is a lovely feature, but I do miss one shortcut.
I tend to use JING to do screeshoots of what I'm talking about and it ...
4
votes
1answer
182 views
Are the StackExchange pagedown/wmd help interfaces open-sourced anywhere?
I have the editor up and running as per Where's the WMD editor open source project?
But are the StackExchange pagedown/wmd help interfaces, i.e. the tabular help content and bouncing of the ...
9
votes
1answer
125 views
Allow “small” and “abbr” HTML tags [duplicate]
Possible Duplicate:
Allow the <small> tag
A long time ago Jeff posted about allowed HTML tags and also asked what other tags do we want allowed. In the answers to that question, some ...
6
votes
2answers
186 views
Bolding words that include an underscore doesn't work
Here's the screenshot of my experience with italic text over Stack Overflow.
Basically it just wraps the word into asterisks and leaves it like this. Here on Meta I do not observe this bug.
1
vote
1answer
361 views
Why does the Markdown Sharp NuGet package lack PageDown (WMD)?
I am creating a new project which will utilize the open source project MarkdownSharp. Rather than downloading and compiling the bits myself I decided to use the MarkdownSharp NuGet package.
I realize ...
0
votes
1answer
68 views
User interactions with answer posting textarea
When I try to make a particular word or sentence within the post answer text area Bold it looks like this:
my first sentence
But when I try to make more of the sentence bold, e.g.:
my first ...
3
votes
1answer
82 views
Converting text in a link include characters that were not selected
I was editing a tag wiki, and I have noticed that in some cases, when I select text to make it a link, the text that is converted in a link includes characters that were not selected.
For example, if ...
1
vote
0answers
52 views
Please add a toolbar button or keyboard shortcut for the Keyboard style [duplicate]
Possible Duplicate:
Key equivalent for <kbd></kbd>
I originally posted this on Meta.Superuser.com almost a year ago where it was upvoted a lot. Unfortunately, it has not been ...
6
votes
1answer
73 views
The editor doesn't correctly build the link when the selected text contains brackets
The button to create a link doesn't behave correctly when the text contains brackets.
Suppose you want to create a link from "unicorns -[discussion]"; selecting the text, and clicking the link ...
5
votes
1answer
169 views
Is the complete SO rendering JS available uncompressed?
I have a blog which I've started working on for the first time in a while, and I can't help but notice how often I want to use the SO markup. I don't just mean prettify, I mean using `, __, and * as ...
5
votes
0answers
153 views
Make multi-line code indent work with sloppy selections in the editor
This is only a minor annoyance, but one at least I often run into.
Would it be possible to make the "indent code" button (or Ctrl+K) always indent entire lines when there's a multi-line selection? It ...
1
vote
0answers
113 views
Markdown editor bug for inline code links
I think there is a bug with the editor.
Create a inline codeblock with the back ticks.
SomeClassName
Double click the single word which highlights SomeClassName.
Click add a link and save it. ...
11
votes
1answer
284 views
How does SO remove HTML tags from questions?
I am curious how SO goes about removing HTML tags from posts. I just started using their MarkdownSharp project. By default MarkdownSharp encodes any HTML within code blocks like this:
<span ...
11
votes
1answer
324 views
Will the WMD repository ever be updated?
If you check out the github repository, the last update was March 2009. Version 3, I guess.
The team has added a lot of changes and fixes over the last two years. Is that the last open source ...
2
votes
1answer
208 views
Stack Overflow wmd editor anti-CSRF
How does Stack Overflow's markdown protect against CSRF attacks? For example, an image generated by markdown like:
![alt text][1]
[1]: http://stackoverflow.com/users/logout
does not log the user ...
5
votes
1answer
103 views
Markdown cannot parse posts with added links when there are Images with Links in them
In this Meta question, I posted a image, and a link, I've enclosed the markdown text:
I was reading [a recent Meta question about users not showing up on the Area 51 Stack Exchange 'users' page][1] ...
3
votes
1answer
67 views
Data explorer doesn't highlight “TOP” as query keyword
The Data Explorer doesn't highlight "TOP" as a query keyword, even though it supports it (i.e. "SELECT TOP 10 ...").
8
votes
5answers
817 views
Implement an API call to display LaTeX as inline image
One can use http://chart.apis.google.com/chart?cht=tx&chl= + LaTeX formula as URL for an image to display formulae, e.g. this (credit goes to Vortico for his comment on the Physics proposal at ...
3
votes
2answers
270 views
Did WMD 3 ever come out?
Here's what the WMD Google Code page says:
Version 3.0 should be released in February/March 2009 and will a major rewrite making use of jQuery.
Has this been released? What is the status of the ...
20
votes
4answers
857 views
Why should users have to press Return twice to insert new lines?
When I post a question and want to add a new line, I have to press Return two times, or else the next text will appear on the same line.
Is this really supposed to behave this way? If so, why?
7
votes
3answers
239 views
How does The Editor Handle Tab Characters?
While editing http://stackoverflow.com/questions/2354800/winforms-control-begininvoke-asynchronous-callback, I found that it actually contains tab characters (despite the fact that they cannot be ...
15
votes
2answers
2k views
What HTML editor is used by Stack Overflow?
The Stack Overflow HTML editor is the best I've seen. Is it available as a downloadable component?
2
votes
4answers
420 views
Why use server side markdown?
Why did SO decide to use Markdown sharp? It seems that a better idea would be to get both the HTML and the markdown from the client-side WMD. This way there would be no incompatibilities between two ...
2
votes
0answers
98 views
In the WMD preview, newline before closing </pre> might break preview in other parts of same post
This is the same effect as in Newline before closing </pre> might break formatting in other parts of same post. However, that Markdown bug made both the preview and the final results be rendered ...
0
votes
2answers
345 views
Bad Indentation of Code
I've been seeing many questions and answers with the first line of a method or class indented by a negative amount. I haven't been able to reproduce it. Maybe someone on the team can look at ...
3
votes
1answer
79 views
WMD / bullet lists
Is the depth limitation of bullet lists a markdown feature? Or was it introduced in the markdown processor rewrite? I'm talking about:
data with
sub nodes
and sub-sub-nodes
and so on
which is:
...
1
vote
1answer
55 views
wmd.js looping when trying to quote test [duplicate]
Possible Duplicate:
Firefox freezes (script execution uses 100% cpu) upon trying to quote.
Possibly Related (but probably not):
...
0
votes
1answer
390 views
Bug In WMD Markdown Editor
To make a line break, you have to end a sentence with two spaces.
To make a paragraph, you create a whole line between two blocks to text.
But when you create a line break, it doesn't end the ...
5
votes
9answers
936 views
Why doesn't the site use a rich text editor?
Why does the Stack Overflow trilogy of sites use Markdown instead of some other rich text editor like FCKEditor or TinyMCE?
10
votes
1answer
333 views
Markdown quirkiness with hyperlinks including images
I noticed some weird behavior of Markdown regarding adding hyperlinks to images.
Start with an image:
![alt text][1]
[1]: http://example.com/image.jpg
Now, highlight ![alt text][1] and hit ...
0
votes
2answers
198 views
preview vs post linking difference
Vaguely related to:
Links to URLs containing parentheses
This is likely to do with encoding URLs for safety, but here's a case that works in the preview and the rollover title is "Speakers" ...
2
votes
1answer
81 views
Is there a bug in preview when using parentheses in link URLs?
I would like to report a bug.
If there are parentheses in a URL then the link is incorrect
in the preview (but not in the final page).
Example, composing an answer to a question on Stack Overflow:
...
27
votes
3answers
1k views
add LaTeX support to Markdown/WMD
I'm planning a (the?) StackExchange site for mathematics. I think it will be awesome, but there is one major difference between mathematicians and programmers which will be a source of friction in the ...
1
vote
2answers
217 views
Markdown Italics Bug Report
Erlang uses the underscore atom (in single quotes) quite a lot. See for instance here.
MatchExpression ::= [ MatchFunction, ... ]
MatchFunction ::= { MatchHead, MatchConditions, MatchBody }
MatchHead ...
13
votes
3answers
2k views
Can I use Stack Overflow's reengineered WMD editor?
I hope this isn't an outrageous question. I'm developing a Web application that is going to be sort of like a blogging platform, but aimed towards storing snippets of code. I have read the blog posts ...
1
vote
4answers
195 views
Bug in editor for numbered lists?
I noticed what seemed to be a bug in the way the stackoverflow editor handles numbered lists. I did a search on meta for this and it didn't come up, but if it is a duplicate, I'll delete the question.
...
23
votes
2answers
240 views
Add support for abbr tag
The <abbr> tag is useful to clarify abbreviations without hunting down external links for them.
Migrating this from: ...


