Skip to content

Commit

Permalink
do not convert tag to lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
Her Email authored and alphatownsman committed Nov 22, 2023
1 parent 44e83d5 commit 382558b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion journal/templates/mark.html
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
tags_arr = [];

for (let i = 0; i < tags.length; i++) {
tags_arr.push(tags[i].textContent.toLowerCase());
tags_arr.push(tags[i].textContent);
}
this.tags_array = tags_arr;

Expand Down

0 comments on commit 382558b

Please sign in to comment.