From 419ebe0cd3beae9041cfa7e8fea44d4f4e7753dd Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Tue, 23 Jul 2024 22:16:46 -0700 Subject: [PATCH] typegen: add missing qmltypelink shortcode --- layouts/shortcodes/qmltypelink.html | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 layouts/shortcodes/qmltypelink.html diff --git a/layouts/shortcodes/qmltypelink.html b/layouts/shortcodes/qmltypelink.html new file mode 100644 index 0000000..018ebd5 --- /dev/null +++ b/layouts/shortcodes/qmltypelink.html @@ -0,0 +1,9 @@ +{{- $params := dict + "type" (.Get "type") + "module" (.Get "module") + "name" (.Get "name") + "mtype" (.Get "mtype") + "mname" (.Get "mname") +-}} + +{{- partial "qmltype.html" $params -}}