diff options
author | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-02-02 11:08:56 -0500 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-02-02 11:08:56 -0500 |
commit | 8ed47eac7a593a4728792317d04bb1d597db3134 (patch) | |
tree | 80ce316d0a2baee90903b3ee205e578162d77f87 /tools | |
parent | 39d8c7d7018a90e1ad8cf2df032c4b9accc2c574 (diff) |
A first Igalia post
Also add support for embedded youtube videos in posts. As well as fix some
bugs with drawing note-cards on front page.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/note.lua | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/tools/note.lua b/tools/note.lua index 16acbc8..d684aaa 100644 --- a/tools/note.lua +++ b/tools/note.lua @@ -1,4 +1,5 @@ -local stringify = (require 'pandoc.utils').stringify +local stringify = require('pandoc.utils').stringify +local text = require('text') local meta_tools = require("tools/meta_tools") local status_map = {"seedling", "budding", "evergreen"} @@ -12,6 +13,19 @@ function Link(link) end end +function Image(image) + if not string.find(image.src, "://") then + local s_begin, s_end = string.find(image.src, "youtube:") + if s_begin ~= nil then + local url = "https://www.youtube.com/embed/" .. string.sub(image.src, s_end+1, -1) + local video = pandoc.RawInline("html", string.format("<div class=\"youtube-video\"><iframe width=\"728px\" height=\"410px\" src=\"%s\"></iframe></div>", url)) + return {video} + end + else + return image + end +end + function Pandoc(doc) doc.meta["main_class"] = "html-note-page" doc.meta["main_container"] = "main-container" |