_       _       
  (_) ___ | |_ ____
  | |/ _ \| __|_  /
  | | (_) | |_ / / 
 _/ |\___/ \__/___|
|__/               

Pandoc notes

An interesting pandoc command by Calin Leafshade from his video on note-taking using Neovim:

Screenshot of Calin Leafshade's YouTube video on note-taking with Neovim

pandoc \
    --pdf-engine=xelatex \
    -V 'mainfont:DejaVuDerif' \
    -V 'mainfontoptions:Extension=.ttf, UprightFont=*, BoldFont=*-Bold, ItalicFont=*-Italic, BoldItalicFont=*-BoldItalic' \
    -V 'sansfont:DejaVuSans.ttf' \
    -V 'monofont:DejaVuSansMono.ttf' \
    -V "geometry:margin=1in" \
    -o "$target/$outputFile" $filename &