aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/league/html-to-markdown/src/HtmlConverter.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2020-08-22 19:56:28 +0200
committerMario Vavti <mario@mariovavti.com>2020-08-22 19:56:28 +0200
commit88a68f96da303893d911f09c25088d4f8288b5fb (patch)
tree65bc81e92f02cbf253c5ab2d92e9c3f2bd2cb39e /vendor/league/html-to-markdown/src/HtmlConverter.php
parent32bdf42913518b3421986cb4d49d62ed1b04354e (diff)
downloadvolse-hubzilla-88a68f96da303893d911f09c25088d4f8288b5fb.tar.gz
volse-hubzilla-88a68f96da303893d911f09c25088d4f8288b5fb.tar.bz2
volse-hubzilla-88a68f96da303893d911f09c25088d4f8288b5fb.zip
composer update html-to-markdown
Diffstat (limited to 'vendor/league/html-to-markdown/src/HtmlConverter.php')
-rw-r--r--vendor/league/html-to-markdown/src/HtmlConverter.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor/league/html-to-markdown/src/HtmlConverter.php b/vendor/league/html-to-markdown/src/HtmlConverter.php
index 846131af6..6f98e97b4 100644
--- a/vendor/league/html-to-markdown/src/HtmlConverter.php
+++ b/vendor/league/html-to-markdown/src/HtmlConverter.php
@@ -41,6 +41,7 @@ class HtmlConverter implements HtmlConverterInterface
'hard_break' => false, // Set to true to turn <br> into `\n` instead of ` \n`
'list_item_style' => '-', // Set the default character for each <li> in a <ul>. Can be '-', '*', or '+'
'preserve_comments' => false, // Set to true to preserve comments, or set to an array of strings to preserve specific comments
+ 'use_autolinks' => true, // Set to true to use simple link syntax if possible. Will always use []() if set to false
);
$this->environment = Environment::createDefaultEnvironment($defaults);