Files
cs249r_book/lua/sidenote.lua
Vijay Janapa Reddi 2575c574f7 Formats quizzes as callout blocks
Formats quizzes as callouts with answers section.

Enhances quiz presentation by formatting them as callouts.

Compiles all answers in a dedicated section, improving user experience.
2025-06-19 13:00:23 -04:00

4 lines
122 B
Lua

function Note (note)
return pandoc.RawInline('latex', '\\sidenote{' .. pandoc.utils.stringify(note.content) .. '}')
end