Add concordance lists (moved from MDImporter)

This commit is contained in:
2022-04-02 00:55:38 +02:00
parent ebf5466890
commit 99f8534d17
10 changed files with 1712 additions and 2 deletions

18
src/MDConcLengths.php Normal file
View File

@@ -0,0 +1,18 @@
<?PHP
/**
* Constains lists for categorizing misspelled sizes.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
/**
* Provides lists for categorizing misspelled sizes.
*/
final class MDConcLengths {
const LENGTHS_LIST = [
"cn" => "cm",
];
}