Community guidelines
Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.
Mike Member
@koremike · Joined 9 years ago · 13 posts · 5 topics · 1 reputation
Badges
Recent posts
-
RTFM site delayed style load in Internet Explorer 11
· 8 years ago
I notice that this is a problem with the learn.getgrav.org site itself! Observe how (with IE 11 only) each time you select a page from the menu, the menu disappears and the page momentarily takes over
-
RTFM site delayed style load in Internet Explorer 11
· 8 years ago
In Internet Explorer 11, with a site built using RTFM, the CSS for the menu sidebar is delayed. The pages load in a very spasmodic fashion. There are a lot of '403 - forbidden' error messages showing
-
Escaping html when importing yaml
· 9 years ago
I wanted to but it is a forked repo and he doesn't seem to have enabled issues
-
Escaping html in twig
· 9 years ago
I've actually mostly answered my own question for this here: /forum/content-markdown/escaping-html-when-importing-yaml-t7932?u=koremike Still having an issue with a >- block chomping indicator bein
-
Escaping html when importing yaml
· 9 years ago
I have managed to achieve this using the twig documentation on escaping as at https://twig.symfony.com/doc/2.x/api.html#escaper-extension Using {% autoescape 'html' %} {{ page.header.imports.file1.x|y
-
Escaping html in twig
· 9 years ago
Hi @paul I got this working by using {{ page.header.imports.ex_config|json_encode(constant('JSON_PRETTY_PRINT') b-or constant('JSON_UNESCAPED_SLASHES'))|e('html') }} I am now trying to achieve same
-
Escaping html when importing yaml
· 9 years ago
I am using the 'import' plugin to work with both json and yaml files. For json I have used {{ page.header.imports.ex_config|json_encode(constant('JSON_PRETTY_PRINT') b-or constant('JSON_UNESCAPED_SLA
-
Converting json to yaml
· 9 years ago
I am using the import plugin to import json files into markdown content. To achieve this I am using code such as: {{ page.header.imports.ex_config|json_encode(constant('JSON_PRETTY_PRINT') b-or consta
-
Escaping html in twig
· 9 years ago
Hello again @paul I have just tested this further and it is giving me a problem with some json parameters which contain xml. This xml content has escaped backslashes which must be retained... Can you
-
Escaping html in twig
· 9 years ago
Yes @paul that has worked. Thank you 🙂