Skip to content

Commit

Permalink
WIP6
Browse files Browse the repository at this point in the history
  • Loading branch information
knocte committed Dec 30, 2023
1 parent 71e3b31 commit 4342881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FileConventions/Library.fs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ let SplitIntoWords(text: string) =

let words =
Regex.Split(text, codeBlockRegex)
|> Seq.filter(fun item -> not(String.IsNullOrEmpty item))
|> Seq.filter(String.IsNullOrEmpty >> not)
|> Seq.map(fun item ->
if Regex.IsMatch(item, codeBlockRegex) then
{
Expand Down

0 comments on commit 4342881

Please sign in to comment.