-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
335 additions
and
44 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
talks/2024-chma/.quarto/_freeze/index/execute-results/html.json
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"entries":[],"headings":["the-project","endangered-archaeology-in-middle-east-and-north-africa-eamena","who-we-are","aims","coverage","limits","funders","database-system","eamena-database","disturbances-and-threats","definition","cases","assessment","photographic-archive","data-structure","cases-study","metadata","wadi-naqqat","useful-links"]} | ||
{"headings":["the-project","endangered-archaeology-in-middle-east-and-north-africa-eamena","who-we-are","aims","coverage","limits","funders","database-system","eamena-database","disturbances-and-threats","definition","cases","assessment","photographic-archive","data-structure","cases-study","metadata","iiif","wadi-naqqat","non-coptic-heritage","city-of-the-dead-1","useful-links"],"entries":[]} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
title: embedpdf | ||
author: Jeffrey Girard | ||
version: 0.4.1 | ||
quarto-required: ">=1.3.0" | ||
contributes: | ||
shortcodes: | ||
- embedpdf.lua | ||
|
65 changes: 65 additions & 0 deletions
65
talks/2024-chma/_extensions/jmgirard/embedpdf/embedpdf.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
function pdf(args, kwargs) | ||
local data = pandoc.utils.stringify(args[1]) or pandoc.utils.stringify(kwargs['file']) | ||
local width = pandoc.utils.stringify(kwargs['width']) | ||
local height = pandoc.utils.stringify(kwargs['height']) | ||
local border = pandoc.utils.stringify(kwargs['border']) | ||
local class = pandoc.utils.stringify(kwargs['class']) | ||
local image = pandoc.utils.stringify(kwargs['image']) | ||
local image_force = pandoc.utils.stringify(kwargs['image_force']) | ||
local image_width = pandoc.utils.stringify(kwargs['image_width']) | ||
local image_height = pandoc.utils.stringify(kwargs['image_height']) | ||
local image_border = pandoc.utils.stringify(kwargs['image_border']) | ||
local image_class = pandoc.utils.stringify(kwargs['image_class']) | ||
|
||
if width ~= '' then | ||
width = 'width="' .. width .. '" ' | ||
end | ||
|
||
if height ~= '' then | ||
height = 'height="' .. height .. '" ' | ||
end | ||
|
||
if border ~= '' then | ||
border = 'border="' .. border .. '" ' | ||
end | ||
|
||
if class ~= '' then | ||
class = 'class="' .. class .. '" ' | ||
end | ||
|
||
if image_width ~= '' then | ||
image_width = 'width="' .. image_width .. '" ' | ||
end | ||
|
||
if image_height ~= '' then | ||
image_height = 'height="' .. image_height .. '" ' | ||
end | ||
|
||
if image_border ~= '' then | ||
image_border = 'border="' .. image_border .. '" ' | ||
end | ||
|
||
if image_class ~= '' then | ||
image_class = 'class="' .. image_class .. '" ' | ||
end | ||
|
||
-- detect html | ||
if quarto.doc.isFormat("html:js") then | ||
if image_force == 'TRUE' then | ||
return pandoc.RawInline('html', '<a href="' .. data .. '" download><img src="' .. image .. '" ' .. image_width .. image_height .. image_class .. image_border .. ' /></a>') | ||
end | ||
if image ~= '' then | ||
return pandoc.RawInline('html', '<object data="' .. data .. '" type="application/pdf"' .. width .. height .. class .. border .. '><a href="' .. data .. '" download><img src="' .. image .. '" ' .. image_width .. image_height .. image_class .. image_border .. ' /></a></object>') | ||
else | ||
return pandoc.RawInline('html', '<object data="' .. data .. '" type="application/pdf"' .. width .. height .. class .. border .. '><a href="' .. data .. '" download>Download PDF file.</a></object>') | ||
end | ||
else | ||
return pandoc.Null() | ||
end | ||
|
||
end | ||
|
||
-- Add alias shortcode | ||
function embedpdf(...) | ||
return pdf(...) | ||
end |
File renamed without changes
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters