Skip to content

Instantly share code, notes, and snippets.

View jkrenzer's full-sized avatar
❄️
Working & looking forward to the solistice

Jörn Krenzer jkrenzer

❄️
Working & looking forward to the solistice
  • SFDY
  • Germany
View GitHub Profile
@jkrenzer
jkrenzer / docx-table-custom-style.lua
Last active February 3, 2024 12:18
Pandoc lua filter to change all table text to "Table Paragraph" custom style
local function plain_to_para(block)
if block.t == "Plain" then
return pandoc.Para(block.content)
else
return block
end
end
local function TableContent(block)
if block.t ~= "Div" then