Update README.md

This commit is contained in:
David Rotermund 2023-05-15 20:21:25 +02:00 committed by GitHub
parent 8284cff611
commit 58958bc97a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,9 +30,32 @@ If you want to remove an entry from these databases, you need to delete it yours
### types_db.json ### types_db.json
An entry looks like this: An entry looks like this:
''' ```
"article": [[], "article", "article"] "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."],
```