Manual override of `date` doesn't work in citations
michaelpginn opened this issue · 2 comments
michaelpginn commented
Checks
- I have searched the docs, existing issues, and existing discussions for answers first.
Link to your website repo
https://github.com/lecs-lab/lecs-lab.github.io
Version of Lab Website Template you are using
1.2.0
Description
I am trying to manually override the date
field in my sources, as in
- id: doi:10.18653/v1/2023.genbench-1.7
date: 2023-12-01
However, this does not seem to work, as the citations.yaml
file contains
- id: doi:10.18653/v1/2023.genbench-1.7
title: Robust Generalization Strategies for Morpheme Glossing in an Endangered Language
Documentation Context
authors:
- Michael Ginn
- Alexis Palmer
publisher: Proceedings of the 1st GenBench Workshop on (Benchmarking) Generalisation
in NLP
date: ''
link: https://doi.org/gtmsc3
plugin: sources.py
file: sources.yaml
Is there something else I have to do to get this override to work? The dates that are automatically pulled are not correct.
vincerubinetti commented
This is a bug. For now you can wrap your data in double quotes and that should fix it. Also see this fix on branch v1.2.1
:
Since hopefully most people won't run into this niche bug case, I'm going to wait a little bit before releasing 1.2.1 to see if there are any regressions from 1.2.0 or other bugs I'd want to include in the new version.
michaelpginn commented
That worked, thanks!