Demo series post 1

posted on 01 Oct 2023 in series demo_series

Series are enssentially Jekyll Collections. So to add new series is like adding new collections. Say we want to add series tutorial

  1. config your series in _config.yml like
collections:
  tutorial:
    output: true
  1. make corresponding series folder under project root: _tutorial/
  2. post under series by adding new markdown file into _tutorial/

See Jekyll official doc on Collections