From 8ed47eac7a593a4728792317d04bb1d597db3134 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Thu, 2 Feb 2023 11:08:56 -0500 Subject: 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. --- tools/note.lua | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'tools') 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("
", 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" -- cgit v1.2.3