From 58958bc97ad96fa5b3fbfd54eaf9d56fcfd564e4 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Mon, 15 May 2023 20:21:25 +0200 Subject: [PATCH] Update README.md --- README.md | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e0477f6..9db070e 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,32 @@ If you want to remove an entry from these databases, you need to delete it yours ### types_db.json An entry looks like this: -''' +``` "article": [[], "article", "article"] -''' +``` +Beside the key, there are three components. +1. An list with alternative keys. In the case we want to fuse several keys into one category. +2. The German headline +3. The English headline + +Thus we want to change it into: +``` +"article": [[], "Artikel", "Article"] +``` +### authors_db.json + +An entry looks like this: +``` +"Pawelzik, K.": [], +``` +The key is later used for generating the author name in the html lists. Again a list with alternative author names follows. + +Since this entry is wrong, we fix it by: +``` +"Pawelzik, K. R.": ["Pawelzik, K."], +``` + +