Skip to content

Commit

Permalink
🩹 use Pandoc filter to add dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
gadenbuie committed Aug 27, 2024
1 parent cca99a8 commit 9e07e94
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions _extensions/tachyons/tachyons.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
if quarto.doc.is_format("html:js") then
quarto.doc.add_html_dependency({
name = 'tachyons',
version = '4.12.0',
stylesheets = { "tachyons.css" },
})
end
function Pandoc()
if quarto.doc.is_format("html:js") then
quarto.doc.add_html_dependency({
name = 'tachyons',
version = '4.12.0',
stylesheets = { "tachyons.css" },
})
end
end

0 comments on commit 9e07e94

Please sign in to comment.