riboseinc / jekyll-theme-open-project

Jekyll theme for site suite presenting your open software and specifications.
MIT License
30 stars 3 forks source link

Failure to parse post when author email not provided #74

Open ronaldtse opened 3 years ago

ronaldtse commented 3 years ago

This crashes:

---
layout: post
title: "Yaml2Text now supports YAML with Liquid"
date: 2020-09-20
categories: about
authors:
  -
    name: Jeffrey Lau
    social_links:
      - https://www.linkedin.com/in/jtklau/

excerpt: >-
    Importing YAML data into Metanorma using Liquid!
---

This works:

---
layout: post
title: "Yaml2Text now supports YAML with Liquid"
date: 2020-09-20
categories: about
authors:
  -
    name: Jeffrey Lau
    email: xxx@abc.com
    social_links:
      - https://www.linkedin.com/in/jtklau/

excerpt: >-
    Importing YAML data into Metanorma using Liquid!
---