Update website

This commit is contained in:
Guilhem Lavaux 2024-11-23 21:21:33 +01:00
parent 0591a4aeb4
commit 7cd3d51e77
43 changed files with 4124 additions and 2 deletions

View file

@ -4,6 +4,7 @@ use RenanBr\BibTexParser\Listener;
use RenanBr\BibTexParser\Parser;
use RenanBr\BibTexParser\Processor;
use RenanBr\BibTexParser\Processor\NamesProcessor;
use RenanBr\BibTexParser\Processor\LatexToUnicodeProcessor;
require dirname(__FILE__).'/common.php';
@ -177,6 +178,7 @@ $listener->addProcessor(static function (array $entry) {
}
return $entry;
});
$listener->addProcessor(new LatexToUnicodeProcessor());
// Create a Parser and attach the listener
$parser = new Parser();