mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
26acd9be72
Apologies @simonbaird this is the belated fix to the issue you mentioned in https://github.com/TiddlyWiki/TiddlyWiki5/pull/8441#issuecomment-2276175490
39 lines
1.6 KiB
Plaintext
39 lines
1.6 KiB
Plaintext
title: $:/core/templates/social-metadata
|
|
tags: $:/tags/RawMarkupWikified
|
|
|
|
\procedure meta-plain(name,source,name-attribute:"name")
|
|
\whitespace trim
|
|
<%if [<source>has[text]] %>
|
|
<meta <$text text=<<name-attribute>>/>="<$text text=<<name>>/>" content="<$text text={{{ [<source>get[text]encodehtml[]] }}}/>">
|
|
<$text text={{{ [charcode[10]] }}}/>
|
|
<%endif%>
|
|
\end meta-plain
|
|
|
|
\procedure meta-wikified(name,source,name-attribute:"name")
|
|
\whitespace trim
|
|
<%if [<source>has[text]] %>
|
|
<$wikify name="html" text={{{ [<source>get[text]] }}} output="text">
|
|
<meta <$text text=<<name-attribute>>/>="<$text text=<<name>>/>" content="<$text text={{{ [<html>encodehtml[]] }}}/>">
|
|
<$text text={{{ [charcode[10]] }}}/>
|
|
</$wikify>
|
|
<%endif%>
|
|
\end meta-wikified
|
|
|
|
\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline macrocallblock conditional commentinline commentblock
|
|
<<meta-wikified "description" "$:/SiteSubtitle">>
|
|
|
|
<!-- Facebook Meta Tags -->
|
|
<<meta-plain "og:url" "$:/SiteUrl" "property">>
|
|
<<meta-plain "og:type" "website" "property">>
|
|
<<meta-wikified "og:title" "$:/SiteTitle" "property">>
|
|
<<meta-wikified "og:description" "$:/SiteSubtitle" "property">>
|
|
<<meta-plain "og:image" "$:/SitePreviewUrl" "property">>
|
|
|
|
<!-- Twitter Meta Tags -->
|
|
<<meta-plain "twitter:card" "summary_large_image">>
|
|
<<meta-plain "twitter:domain" "$:/SiteDomain" "property">>
|
|
<<meta-plain "twitter:url" "$:/SiteUrl" "property">>
|
|
<<meta-wikified "twitter:title" "$:/SiteTitle">>
|
|
<<meta-wikified "twitter:description" "$:/SiteSubtitle">>
|
|
<<meta-plain "twitter:image" "$:/SitePreviewUrl">>
|