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
1 change: 1 addition & 0 deletions news/changelog-1.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ All changes included in 1.7:
- ([#12338](https://github.com/quarto-dev/quarto-cli/issues/12338)): Add an additional workaround for the SCSS parser used in color variable extraction.
- ([#12369](https://github.com/quarto-dev/quarto-cli/pull/12369)): `quarto preview` correctly throws a YAML validation error when a `format` key does not conform.
- ([#12238](https://gijit.com/quarto-dev/quarto-cli/issues/12238)): Very long error (e.g. in Jupyter Notenook with backtrace) are now no more truncated in the console.
- ([#9867](https://github.com/quarto-dev/quarto-cli/issues/9867)): Blank lines are now trimmed in Raw HTML Table blocks.

## Languages

Expand Down
1 change: 0 additions & 1 deletion src/resources/filters/crossref/crossref.lua
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ import("../quarto-init/resourcerefs.lua")

import("../normalize/flags.lua")
import("../normalize/normalize.lua")
import("../normalize/parsehtml.lua")
import("../normalize/extractquartodom.lua")
import("../normalize/astpipeline.lua")
import("../normalize/capturereaderstate.lua")
Expand Down
1 change: 0 additions & 1 deletion src/resources/filters/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ import("./quarto-finalize/typst.lua")

import("./normalize/flags.lua")
import("./normalize/normalize.lua")
import("./normalize/parsehtml.lua")
import("./normalize/extractquartodom.lua")
import("./normalize/astpipeline.lua")
import("./normalize/capturereaderstate.lua")
Expand Down
3 changes: 3 additions & 0 deletions src/resources/filters/normalize/astpipeline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ function quarto_ast_pipeline()
end
local function handle_raw_html_as_table(el)
local eltext
-- trim leading and trailing spaces
el.text = el.text:gsub("^%s*(.-)%s*$", "%1")

if(_quarto.format.isTypstOutput()) then
eltext = juice(el.text)
else
Expand Down
321 changes: 0 additions & 321 deletions src/resources/filters/normalize/parsehtml.lua

This file was deleted.

Loading
Loading