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 create something like:

<div class="highlight">
  <pre lang="javascript">
    alert('hello world');
  </pre>
</div>

How do I go about capturing ```(anything)\n(anything)``` in JavaScript flavored regex?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted
r = /`{3}(?:(.*$)\n)?([\s\S]*)`{3}/m;
r.exec(yourSampleString); // => [..., "javascript", "alert('hello world');\n"]
r.exec('```puts "ok"```'); // => [..., undefined, "puts \"ok\""]
r.exec('```foo```bar```'); // => [..., undefined, "foo```bar"]
link|improve this answer
Close, but if you noticed my regex needs to capture the lang="" parameter. So: [...,"javascript","alert('hello world')"] – Oscar Godson Nov 30 '11 at 22:43
@OscarGodson: gotcha, added an optional capture for the language identifier. – maerics Nov 30 '11 at 22:59
sexiness i tell you! thanks mang :) – Oscar Godson Dec 1 '11 at 2:32
feedback

This will get an array of everything between

```

result = subject.match(/`{3}[\s\S]*?`{3}/g);

But beware that nested:

```

will be trouble..

link|improve this answer
anyway to just ignore all ``` between the first and last ```? – Oscar Godson Nov 30 '11 at 21:24
@OscarGodson You can make the quantifier *? greedy *. – FailedDev Nov 30 '11 at 21:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.