Tagged Questions
5
votes
2answers
1k views
MarkItUp! continous preview refresh without hitting enter
I'm using MarkItUp (http://markitup.jaysalvat.com/) and can't really figure out how to get it to continuously update the preview pane as each character is typed (or even when a 'space' is ...
2
votes
0answers
204 views
How to get markitup editor, using markdown set, to send markdown instead of html
I'm using rails and have a markItUp editor in place, using the Markdown custom set. The only thing I can't figure out is how to get it to submit raw Markdown instead of converted html. I plan on ...
2
votes
1answer
557 views
rails markitup/markdown or textile
I would like to give my user's the option to nicely format their comments. I am not really looking for something super fancy, perhaps something lightweight.
There is a ton of information about ...
1
vote
1answer
120 views
How do I insert text at the focus into a markitup editor with javascript?
I've implemented markitup to handle users entering markdown text. I want to replace the default image insert command with a nice jquery routine that lets the user browse for an image. I'm able to edit ...
0
votes
1answer
69 views
regex: ignore between brackets and parentheses
I have a regex that checks that a phrase is included:
var regex = new RegExp( "(\\s|\\b)" + phrases[i] + "(\\s|\\b)", "i" );
var result = regex.test( value );
What I need it to do is ignore the ...
0
votes
2answers
62 views
Need help with php code to use the markdown parser
I am attempting to use MarkItUp and PHP Markdown Parser. But I am don't know how to invoke the parser in the preview.php file.
My preview.php is invoked and correct form data is sent by inspect the ...