Update dependencies in pubspec.lock and add new mod 'Odyssey' to mod list

This commit is contained in:
2025-07-14 23:33:46 +02:00
parent 753859fd3e
commit a662dffc7c
5 changed files with 63 additions and 50 deletions

View File

@@ -44,7 +44,7 @@ class FormatConverter {
'td',
];
for (final tag in tagTypes) {
final openCount = '[${tag}'.allMatches(result).length;
final openCount = '[$tag'.allMatches(result).length;
final closeCount = '[/$tag]'.allMatches(result).length;
if (openCount > closeCount) {
result = result + '[/$tag]' * (openCount - closeCount);