Lines Matching refs:language

20 Extending the Markdown language with new elements is as simple as adding a new method to the class …
23 of the Markdown text as an abstract syntax tree (see [Extending the language](#extend)).
37 [PHP]: http://php.net/ "PHP is a popular general-purpose scripting language that is especially suit…
88 The next step is to call the `parse()`-method for parsing the text using the full markdown language
194 Extending the language <a name="extend"></a>
197 Markdown consists of two types of language elements, I'll call them block and inline elements simla…
202 This markdown parser allows you to extend the markdown language by changing existing elements behav…
257 // detect language and fence length (can be more than 3 backticks)
259 $language = substr($line, $pos);
260 if (!empty($language)) {
261 $block['language'] = $language;
283 $class = isset($block['language']) ? ' class="language-' . $block['language'] . '"' : '';
288 …ighlighting here. In general it would also be possible to render ouput in a different language than
348 2. Select language feature traits
357 If you want to define a subset of the markdown language, i.e. remove some of the features, you have…
360 #### Select language feature traits
423 Depending on the language features you have chosen there is a different set of characters that can …
473 of doing real parsing. This way extending them with new language elements is quite hard
487 This allows you to choose between markdown language flavors and also provides a way to compose your