From 756e05504b33c387da7d3f81446a18f9a8fefe49 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Mon, 8 Sep 2014 08:46:01 +0100 Subject: [PATCH] Fix stylesheet block/inline mode The problem was that stylesheets were being transcluded in inline mode (rather than block mode), which meant that triple backticks were not being interpreted as block mode markup, but rather as a series of single backticks. --- core/ui/PageStylesheet.tid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ui/PageStylesheet.tid b/core/ui/PageStylesheet.tid index b20c7670e..c48afda55 100644 --- a/core/ui/PageStylesheet.tid +++ b/core/ui/PageStylesheet.tid @@ -3,7 +3,7 @@ title: $:/core/ui/PageStylesheet <$importvariables filter="[[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]"> <$list filter="[all[shadows+tiddlers]tag[$:/tags/stylesheet]!has[draft.of]]"> -<$transclude/> +<$transclude mode="block"/>