summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/ltr.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/shortcodes/ltr.html')
-rw-r--r--layouts/shortcodes/ltr.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/layouts/shortcodes/ltr.html b/layouts/shortcodes/ltr.html
deleted file mode 100644
index 4ad7682..0000000
--- a/layouts/shortcodes/ltr.html
+++ /dev/null
@@ -1,15 +0,0 @@
-{{ $.Scratch.Set "md" false }}
-
-{{ if .IsNamedParams }}
-{{ $.Scratch.Set "md" (.Get "md") }}
-{{ else }}
-{{ $.Scratch.Set "md" (.Get 0) }}
-{{ end }}
-
-<div dir="ltr">
- {{ if eq ($.Scratch.Get "md") false }}
- {{ .Inner }}
- {{ else }}
- {{ .Inner | markdownify }}
- {{ end }}
-</div>