Lines Matching refs:that

18 that gives most expected results even in non-trivial edge cases.
20 …kdown language with new elements is as simple as adding a new method to the class that converts the
37 [PHP]: http://php.net/ "PHP is a popular general-purpose scripting language that is especially suit…
55 The library uses PHPDoc annotations to determine the markdown elements that should be parsed.
200 Inline elements are elements that are added inside of block elements i.e. inside of text.
295 An inline element is identified by a marker that marks the beginning of an inline element (e.g. `[`…
391 * Defaults to `false` which means that markup is formatted as HTML4.
407 function. This means that if a line starting with `-` could be a list or a horizontal rule, the pre…
416 If you use any trait that uses the `$html5` property to adjust its output you also need to define t…
423 Depending on the language features you have chosen there is a different set of characters that can …
472 I found that most of the implementations use regex to replace patterns instead
474 as you have to come up with a complex regex, that matches your addition but does not mess
477 A [real parser][] should use context aware methods that walk trough the text and
478 parse the tokens as they find them. The only implentation that I have found that uses
479 this approach is [Parsedown][] which also shows that this implementation is [much faster][benchmark]
480 than the regex way. Parsedown however is an implementation that focuses on speed and implements
485 from Parsedown and making it extensible creating a class for each markdown flavor that extend each
486 other in the way that also the markdown languages extend each other.
511 This library is open source and licensed under the [MIT License][]. This means that you can do what…