mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-28 13:53:59 -06:00
Ebook improvements (#103)
* Ebook improvements Removes fixed height and width from the resulting HTML and adds an additional css for the ebook formats. * Update gitignore * Strip tags
This commit is contained in:
committed by
GitHub
parent
61c33e4b60
commit
5412aa6e50
9
book/book.mk4
Normal file
9
book/book.mk4
Normal file
@@ -0,0 +1,9 @@
|
||||
local filter = require "make4ht-filter"
|
||||
local changePath = function(s) return s:gsub("%./images//","images/") end
|
||||
local removeHeight = function(s) return s:gsub('height="%d+"', '') end
|
||||
local removeWidth = function(s) return s:gsub('width="%d+"', '') end
|
||||
local removeMaxWidth = function(s) return s:gsub(' max-width: %d+px;', '') end
|
||||
local removeFixedSettings = function(s) return removeMaxWidth(removeWidth(removeHeight(changePath(s)))) end
|
||||
local process = filter{removeFixedSettings}
|
||||
Make:htlatex()
|
||||
Make:match("html$",process)
|
||||
Reference in New Issue
Block a user