Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,8 @@ website:
href: docs/reference/formats/markdown/gfm.qmd
- text: "CommonMark"
href: docs/reference/formats/markdown/commonmark.qmd
- text: "Hugo"
href: docs/reference/formats/markdown/hugo.qmd
- text: "Markua"
href: docs/reference/formats/markdown/markua.qmd
- section: "Wikis"
Expand Down
3 changes: 3 additions & 0 deletions docs/reference/reference.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ function Pandoc(doc)
local refJsonPath = stem .. ".json"

local refJsonFile = io.open(refJsonPath, "r")
if refJsonFile == nil then
quarto.log.warning("Reference JSON not found: " .. refJsonPath)
end
if refJsonFile ~= nil then
io.input(refJsonFile)
local refJson = io.read("*all")
Expand Down