fix metadata parsing, accounting for trailing quotes

This commit is contained in:
2026-01-04 14:57:53 +01:00
parent 598f29f265
commit 7b156281b8
5 changed files with 10 additions and 3 deletions

View File

@@ -17,8 +17,11 @@ config.o: config.cpp config.hpp
utils.o: utils.cpp utils.hpp
$(CXX) $(CXXFLAGS) -c utils.cpp
tests: tests.o config.o utils.o
g++ -std=c++17 -Wall tests.o config.o utils.o -o tests $(TEST_LIBS)
markdown.o: markdown.cpp markdown.hpp
$(CXX) $(CXXFLAGS) -c markdown.cpp
tests: tests.o config.o utils.o markdown.o
g++ -std=c++17 -Wall tests.o config.o utils.o markdown.o -o tests $(TEST_LIBS)
tests.o: tests.cpp config.hpp
$(CXX) $(CXXFLAGS) -c tests.cpp