Various small improvements
This commit is contained in:
parent
190889b77b
commit
b405edba17
3 changed files with 6 additions and 6 deletions
|
@ -28,10 +28,9 @@
|
|||
"require": {
|
||||
"php": ">=5.3.6",
|
||||
"ext-dom": "*",
|
||||
"ext-mbstring": "*",
|
||||
"twig/twig": "^1.35",
|
||||
"symfony/yaml" : "^2.8",
|
||||
"erusev/parsedown": "^1.6",
|
||||
"erusev/parsedown": "^1.7",
|
||||
"erusev/parsedown-extra": "^0.7"
|
||||
},
|
||||
"suggest": {
|
||||
|
|
|
@ -35,7 +35,8 @@ content_config:
|
|||
# See https://michelf.ca/projects/php-markdown/extra/ for more info
|
||||
breaks: false # A boolean indicating whether breaks in the markup should be reflected in the
|
||||
# parsed contents of the page
|
||||
escape: false # Escape HTML markup in your content files
|
||||
escape: false # Escape HTML markup in your content files; don't confuse this with some sort of
|
||||
# safe mode, enabling this doesn't allow you to process untrusted user input!
|
||||
auto_urls: true # Automatically link URLs found in your markup
|
||||
|
||||
##
|
||||
|
|
|
@ -1393,12 +1393,12 @@ class Pico
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns the Parsedown Extra markdown parser
|
||||
* Returns the Parsedown markdown parser
|
||||
*
|
||||
* This method triggers the `onParsedownRegistered` event when the
|
||||
* Parsedown Extra parser wasn't initiated yet.
|
||||
* Parsedown markdown parser wasn't initiated yet.
|
||||
*
|
||||
* @return ParsedownExtra Parsedown Extra markdown parser
|
||||
* @return Parsedown Parsedown markdown parser
|
||||
*/
|
||||
public function getParsedown()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue