mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-07 18:18:42 -05:00
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.
4 lines
122 B
Lua
4 lines
122 B
Lua
function Note (note)
|
|
return pandoc.RawInline('latex', '\\sidenote{' .. pandoc.utils.stringify(note.content) .. '}')
|
|
end
|