smarana 0.10.13

An extensible note taking system for typst.
#import "lib/library.typ" as lib

// Define the theme mode here so the user can change it
#let theme-mode = "dark"

// Bind theme-mode to all library tools
#let card(..args) = lib.card(..args, theme-mode: theme-mode)
#let section-divider(..args) = lib.section-divider(..args, theme-mode: theme-mode)
#let tag-index-page(..args) = lib.tag-index-page(..args, theme-mode: theme-mode)
#let make-slug = lib.make-slug

#let conf(body) = {
  set document(
    title: "Smarana Notebook",
    author: "smarana",
  )

  set text(
    size: 11pt,
  )

  // Configure external libraries here
  // #import "@preview/cheq:0.3.0": checklist
  // #show: checklist

  body
}