Skip to content

Commit

Permalink
Fixed tag extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenldl committed Feb 18, 2023
1 parent ce30167 commit d55344a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.0.4

- Fixed tag extraction

## 0.0.3

- Made header extraction more robust to files with very long lines
Expand Down
3 changes: 1 addition & 2 deletions src/notefd.ml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ let parse (l : string list) : string list * String_set.t =
| Title x -> aux (x :: title) tags xs
| Tags l ->
let tags =
List.map String.lowercase_ascii l
|> String_set.add_list tags
String_set.add_list tags l
in
aux title tags []
)
Expand Down
2 changes: 1 addition & 1 deletion src/version_string.ml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
let s = "0.0.3"
let s = "0.0.4"

0 comments on commit d55344a

Please sign in to comment.