File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
src/resources/extensions/quarto/video Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 117117- ensure proof titles are appended to paragraph nodes ([ #3772 ] ( https://github.com/quarto-dev/quarto-cli/issues/3772 ) ).
118118- Support parsing markdown in table captions in LaTeX and HTML tables ([ #2573 ] ( https://github.com/quarto-dev/quarto-cli/issues/2573 ) ).
119119- Improve parsing of include shortcodes ([ #3159 ] ( https://github.com/quarto-dev/quarto-cli/issues/3159 ) ).
120+ - Add support for Youtube privacy-enhanced urls in ` video ` shortcodes ([ #4060 ] ( https://github.com/quarto-dev/quarto-cli/issues/4060 ) ).
120121
121122## Pandoc filter changes
122123
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ local youTubeBuilder = function(params)
6868 if not (params and params .src ) then return nil end
6969 local src = params .src
7070 match = checkEndMatch (src , ' https://www.youtube.com/embed/' )
71+ match = match or checkEndMatch (src , ' https://www.youtube%-nocookie.com/embed/' )
7172 match = match or checkEndMatch (src , ' https://youtu.be/' )
7273 match = match or string.match (src , ' %?v=(.-)&' )
7374 match = match or string.match (src , ' %?v=(.-)$' )
You can’t perform that action at this time.
0 commit comments