We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f4fc8 commit 593fd08Copy full SHA for 593fd08
1 file changed
.github/scripts/filters/inject_contact_info.lua
@@ -17,7 +17,8 @@ end
17
18
function should_inject_contact(meta)
19
-- Opt out with `contact: false` in the frontmatter; otherwise inject.
20
- if meta.contact and pandoc.utils.stringify(meta.contact) == "false" then
+ if meta.contact == false
21
+ or (meta.contact and pandoc.utils.stringify(meta.contact) == "false") then
22
return false
23
end
24
return true
0 commit comments