Tagged Questions

7
votes
2answers
2k views

Vim Markdown highlighting (list items and code block conflicts)

I decide to learn more about vim and its syntax highlighting. Using examples for others, I am creating my own syntax file for Markdown. I have seen mkd.vim and it has this problem too. My issue is ...
5
votes
5answers
2k views

Regular expression to convert mark down to HTML

How would you write a regular expression to convert mark down into HTML? For example, you would type in the following: This would be *italicized* text and this would be **bold** text This would ...
4
votes
2answers
490 views

Converting simple markdown(string) to html with xslt

I'm transforming my XSLT-stylesheets into documentation, and I want a rich experience within the comment nodes for each code-chunk, therefore I want to convert the following comment and output as ...
3
votes
4answers
265 views

Get first few elements of a html fragment with xpath on ruby

For a blog like project, I want to get the first few paragraphs, headers, lists or whatever within a range of characters from a markdown generated html fragment to display as a summary. So if I have ...
3
votes
1answer
971 views

Python Regex Search And Replace

I'm not new to Python but a complete newbie with regular expressions (on my to do list) I am trying to use python re to convert a string such as [Hollywood Holt](http://www.hollywoodholt.com) to ...
2
votes
3answers
102 views

Replacing partial regex matches in place with Ruby

I want to transform the following text This is a ![foto](foto.jpeg), here is another ![foto](foto.png) into This is a ![foto](/folder1/foto.jpeg), here is another ![foto](/folder2/foto.png) In ...
2
votes
1answer
41 views

PHP Regex markdown from string

I have this string: "Download it from [http://wordpress.org/extend/plugins/wordpress-mobile-admin/](http://wordpress.org/extend/plugins/wordpress-mobile-admin/)"; And i'm trying to convert this ...
2
votes
2answers
142 views

Regex lazy quantifier vs negation class in MarkDown source

I'm looking through the MarkDown code written in Perl by John Gruber, and there is a sub called _Detab that converts tabs to spaces while preserving the indentation of the text. The line of code in ...
2
votes
2answers
80 views

I need help modifying a regular expression for PHP markdown

I'm modifying PHP Markdown (a PHP parser of the markup language which is used here on Stack Overflow) trying to implement points 1, 2 and 3 described by Jeff in this blog post. I've easily done the ...
1
vote
2answers
53 views

PHP reading first 2 lines of file into variable and cylce through subfolders

I am trying to do the following with PHP... Read a directory Find all .md and .markdown files Read the first 2 lines of these Markdown files. If a Title: Title for the file is found on line 1 then ...
1
vote
2answers
63 views

JavaScript Regex for Code Fencing in Markdown

I'm trying to add support into showdown.js for code fencing, but I'm still sort of a noob at regex. Code fencing, if you don't know, is like this: ```javascript alert('hello world'); ``` Then it'd ...
1
vote
2answers
82 views

Markdown emphasis - re substitution

How would you implement Markddown's emphasis or bold with regular expressions? Or how is it possible to substitute re \*\*(.*)\*\* with what is inside ** **?
1
vote
0answers
260 views

converting markdown lists to html lists in PHP

I have been working on a markdown converter today for a project of mine. I got lost in it and just ran through the code and noticed I had a huge amount for converting lists. My code is below , I ...
1
vote
1answer
67 views

Where did I go wrong in my regex lookaround?

I'm trying to pull the first paragraph out of Markdown formatted documents: This is the first paragraph. This is the second paragraph. The answer here gives me a solution that matches ...
1
vote
1answer
72 views

Markdown implementation in PHP parses text within <a> tags — how does one disable this behavior?

I'm using the Markdown library for PHP by Michel Fortin. I started noticing that it formats the text in tags with markdown rules, like so: http://foo.com/My_Url_With_Underscores essentially ...
1
vote
1answer
93 views

PHP Markdown \n Question

I'm using http://michelf.com/projects/php-markdown/ for my markdown library and my question is that if i edit and remove the \n\n functionality would this work Because the users that i have, are ...
1
vote
2answers
229 views

Custom Markdown for PHP handling new lines

I need custom Markdown library for PHP which converts new lines to <br/> without the need to put double space on the end of the line, kinda like here on SO. I've been looking on the web but ...
1
vote
8answers
1k views

Processing Javascript RegEx submatches

I am trying to write some JavaScript RegEx to replace user inputed tags with real html tags, so [b] will become <b> and so forth. the RegEx i am using looks like so var exptags = ...
0
votes
2answers
36 views

Ruby regular expression for asterisks/underscore to strong/em?

As part of a chat app I'm writing, I need to use regular expressions to match asterisks and underscores in chat messages and turn them into <strong> and <em> tags. Since I'm terrible with ...
0
votes
1answer
71 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
67 views

Simple Markdown subset features in PHP

I would like to allow only paragraphs and lists. Actually i want to use the input to create a document in Open Document format. So I replace the tag <p> with the correct tag in ODF. But first, ...
0
votes
1answer
107 views

Need to modify my Regex to ignore iframe tags

Hi I have a free text editor for blog posts on my website with C# as code behind. I use the following regular expression to strip all HTML tags out of the post for security: Regex.Replace(value, ...
0
votes
1answer
27 views

How to make this linking making script behave with markdown?

I'm using PHP markdown but I also need a script to convert plaintext links into clicakable ones. Both work independently, but when I try to run them together, if I run markdown first, the makelinks ...
0
votes
2answers
197 views

Translate github flavored markdown regex from ruby to python

I'm trying to get an implementation of github flavored markdown working in python, with no luck... I don't have much in the way of regex skills. Here's the ruby code from github: # in very clear ...
0
votes
1answer
236 views

Updating Textmate's Markdown Bundle URL Regex

Hey all, I'm looking to do pretty much what the title says. As-is, the seemingly favored Textmate Markdown bundle chokes on some URLs. What I'd like to do is implement @diegoperini's pattern to ...
0
votes
1answer
167 views

Regex: markdown-style link matching

I want to parse markdown style links, but I'm having some trouble matching the reference style ones. Like this one: [id]: http://example.com/ "Optional Title Here" My regex gets the id and the url, ...