Skip to content

Commit

Permalink
fix case
Browse files Browse the repository at this point in the history
  • Loading branch information
sydseter committed Feb 3, 2025
1 parent b964c8f commit 544c532
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/filesystem/fileSystemHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class FileSystemHelper {
}

public static MASTGRouteMap(): Route[] {
const basePath: string = "data/taxonomy/en/mastg-1.7.0";
const basePath: string = "data/taxonomy/en/MASTG-1.7.0";
const sectionRegex = /^(\d{2})-/;
let routes: Route[] = [];

Expand Down
2 changes: 1 addition & 1 deletion src/routes/taxonomy/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<SvelteMarkdown {renderers} source={content}></SvelteMarkdown>
{/if}
{#each data.categories as category}
<p>├──<a href="/taxonomy/{category}">{Text.FormatPlain(category)}</a></p>
<p>├──<a href="/taxonomy/{category}">{Text.Format(category)}</a></p>
{/each}
</div>
<style>
Expand Down

0 comments on commit 544c532

Please sign in to comment.