feature/Add glossary items via markdown files 2

This commit is contained in:
Marko Milić 2023-01-24 11:17:08 +01:00
parent bc861d008b
commit 7adbf620a9

View File

@ -3133,7 +3133,7 @@ object Glossary extends MdcLoggable {
glossaryItems.appendAll(
getListOfFiles().map(file =>
GlossaryItem(
title = file.getName,
title = file.getName.replace(".md", ""),
description = getContentFromMarkdownFile(file.getPath)
)
)