Tag Info

Hot answers tagged

76

One very simple one - when writing code, when we hit "enter" it would be really nice if it went to the same indent, i.e. void Foo() { if (foo) <- I'm about to hit enter here <- I would like the cursor to be positioned here Another request - the Ctrl-K shortcut indents the code if any of it is at the first column, but outdents otherwise. It ...


70

Well, its a preview's lower case issue between http://i.imgur.com/jVCUe.png http://i.imgur.com/jvcue.png (Meanwhile, stack has been inserted into many Stack Exchange image URLs, somehow making the original URLs rot away.)


43

These shortcuts are found in many / most editors. These would be very useful for putting a code block inside of a list item, for example Ctrl + ] : Indent by 4 spaces Ctrl + > : Indent by 4 spaces Ctrl + [ : De-indent by 4 spaces Ctrl + < : De-indent by 4 spaces Other potentially useful keyboard shortcuts. Ctrl + & or 7 : Replace < with ...


42

This is real, and there's a reason for this. It's two-fold, actually. First, there is a huge difference between a line break and a paragraph break. A line break is just that: The reading flow continues on the next line; your eyes automatically jump from the end of the previous line to the beginning of the next. So the purpose of a line break is to not be ...


40

YOU's excellent work and the OP's detailed screenshots made it pretty easy to get to the bottom of this: You'll note in the screenshot (the one that Daniel censored away) that the image definition is pretty broken; you see something like ![![![bla][3]][ etc. This utterly wrong markdown causes the creation of unbalanced HTML tags, so the tag balancer kicks ...


22

WMD's issues with the Command key (⌘) on Mac browsers: ⌘B should and does: bold selected text ⌘G should: find next instead: display "Insert image" dialog ⌘H should: hide browser app instead: creates a heading ⌘I should and does: italicize selected text ⌘K should and does: indent selected text ⌘L ...


18

The WMD editor story goes something like this: Jeff and team started with the original WMD code at http://wmd-editor.com and it was written by a chap called John Fraser. There's an early blog article about choosing WMD as the code/text editor here: Potential Markup and Editing Choices (blog.stackoverflow.com) For reasons only known to himself, John ...


18

What I think SO needs is: A button next to the button on the editor toolbar. Clicking the button would insert: <!-- language: x --> The caret would be automatically placed where the x is above, and a JS-driven Intellisense-style dropdown list would populate with some choices, something like this: Typing lang-c would present: My 2ยข.


17

EDIT Secretly I added the workaround for chrome 6 only, I upgraded to chrome 7 today and the bug is back. I really don't want to make this workaround part of WMD. Ok, this happens cause of a pretty serious bug in the Chrome 6 regular expression engine. Under certain circumstances it fails to set back references properly. So we have this code: ...


16

No. Very much no. The Tab key's behavior is very well-defined in a browser: It tabs you out of the editor box. Going with your feature request would mean killing functionality that everybody expects from their browser. This is not going to happen. I have created a user script offering the kind of functionality you want (check it out if you're a user script ...


13

I suspect this behavior was introduced with the recent change to validate minimum length after first stripping markup. That's correct, the maximum length check was accidentally changed to be based on the converted and stripped version as well. Since the maximum length is still enforced on the Markdown source, but the validation happened on the ...


13

#include <iostream> surround code by tick marks or #include <iostream> // indent code by four spaces (8 after a list) Source of the above: `#include <iostream>` surround code by tick marks or #include <iostream> // indent code by four spaces (8 after a list) There is a ? on the upper-right of the editor that explains ...


12

WYSIWYG RTE editors are generally bad at structuring the underlying data, making it very difficult to analyze/restructure the contents. Consider this, how often have you seen a Word-user mark a line of text, make it bold, increase font size, and change the font. The experienced user would of course set the style (or what it's called in word) to Heading 1, ...


12

Background: why Ctrl-Alt should never be used for keyboard shortcuts. There are many other potentially-troublesome characters... indeed, on the keyboard I use, almost every AltGr+letter combination is used for typing various symbols. If WMD must use the Ctrl key for shortcuts (and it's questionable, in a browser), it should check that the Alt key is not ...


12

We (I say we, but most credit goes to the original WMD and balpha) have open sourced the javascript version of our Markdown renderer as PageDown, available on Google Code. It does not include our extensions to the Markdown spec. Most of them don't make sense outside of our network.


12

I think this would be bad for two reasons: Some companies block Twitter, so any information embedded in a Tweet would be inaccessible to many users for a significant portion of the time. Any information in a Tweet can be easily copied into a question or answer with a link for reference.


12

Ultimately, you're adding a link to your post that nobody will be able to click on; all it is saying is: it doesn't make much sense as a hyper-link, but will be fine for example as code: http://localhost:8080/whatever. We have, however, changed the error message to: Links cannot contain 'localhost' (try a full domain or wrap it in a code block).


12

If changing or improving the detection algorithm to prevent triggering the message in cases like these is not an option, why not change to message to a type which the user can ignore if he is sure that there is no code in his answer? Because then there would be thousands of people posting code without properly formatting it. Many people won't even read ...


11

Yes, Users -> Editors -> All -> <type part of your user name>. This count includes edits to your own posts and edits to tags that do not count toward the Strunk & White silver badge and the Copy Editor gold badge.


11

You can use html tags like <strong> and <em> or <b> and <i> to format in those exceptional cases. Example: Bigword The source for that was: <i>Big<b>w</b>ord</i>


10

We don't support intra-word emphasis. This is by design. See the blog: Three Markdown Gotchas. In short: if typing some_file_name would render as "somefilename", then that would bother more people than those who really need part of a word to be emphasized.


10

Per balpha: Not going to work -- the "browse" button and filename box aren't real, they just make you think you're clicking them. In reality, you're clicking the hidden file input. http://www.quirksmode.org/dom/inputfile.html well, unless you want to drop the custom styling... I can play around with it, but if you really want to make it ...


10

As ChrisF said, the problem is the underscore. _ is a control character, and control characters might behave differently from what you expect. Just escape the underscore (\_) and it will work: *unique\_names* results in unique_names


10

As of August 2011, it now lives under http://code.google.com/p/pagedown/. This version is identical to the version running on the Stack Exchange sites, except for a few Stack Exchange-specific additions (e.g spoilers) that are not included. It is a completely refactored version; the old one at http://code.google.com/p/wmd-new/ is no longer maintained.


10

And then what do you do when people have javascript disabled? Note, XSS protection is completely unrelated to Markdown support, even though it is super important. The typical XSS protection function has the following sig: string protect(string) you could run the protection against the mystical submit markdown AND html implementation, which as pointed by me ...


9

Multiple drafts seems like it would be a feature useful only to a small number of heavy users, but confusing or overkill to typical users. My opinion only, of course. I could be wrong. (And regardless, if you want a feature, you certainly should be asking for it. But I can see why this may not be a priority for Stack Exchange developers.)


9

This would break user expectations of what those keys do...since they have the same behavior on 99.99999% of the internet, we follow that well established convention. More accurately, we don't interfere with that convention, we let normal browser behavior happen. If you want that behavior and wish to deviate from conventions we have no objections, just ...


8

This was happening because the code that checks what text is selected in the input box wasn't taking into account that the box might not be focused at the moment of the check. A similar thing could happen if you type something, then un-focus the box, and then click the "undo" button. Both of these are fixed in the next build. Thanks for a good bug report!


8

You'll want to check out this Google Code project, where updates to WMD made by SO are pushed. balpha actually just made some changes like five minutes ago, so you should find that it's up to date.


8

There are many reasons for this: Take up resources Can be prone to cross browser issues A source of errors in javascript (goes with browser issues) It is quicker for users who are accustom to it to format the text Also, this site claims to be wiki like/based... so I guess this is just a similarity they are trying to reinforce.



Only top voted, non community-wiki answers of a minimum length are eligible