Revert the "". Maybe the issue lies with prism?

This commit is contained in:
RealStickman 2023-06-02 09:39:26 +00:00
parent c8176e25af
commit 1f86f30716
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ class PrismShortcode extends Shortcode
$cl_prompt = $sc->getParameter('cl-prompt', $config->get('plugins.command-line-prompt'));
$cl_output = $sc->getParameter('cl-output');
$cl_filter_output = $sc->getParameter('cl-filter-output');
$cl_continuation = $sc->getParameter("cl-continuation");
$cl_continuation = $sc->getParameter('cl-continuation');
return $this->twig->processTemplate('shortcodes/prism-highlight.html.twig', [
'content' => trim($content),

View File

@ -6,6 +6,6 @@
{% if cl_prompt %}data-prompt="{{ cl_prompt }}"{% endif %}
{% if ln_start %}data-start="{{ ln_start }}"{% endif %}
{% if highlight_lines %}data-line=" {{ highlight_lines }}"{% endif %}
{% if cl_continuation %}data-continuation-str="{{ cl_continuation }}"{% endif %}
{% if cl_continuation %}data-continuation-str="{{ cl_continuation }}" {% endif %}
><code>{{- content|e('html') -}}</code></pre>
</div>