Skip to content

Commit

Permalink
Prerelease of 1.4.20
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertDober committed Feb 21, 2022
1 parent 199e8dd commit 5e49d19
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lib/earmark_parser/helpers/lookahead_helpers.ex
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ defmodule EarmarkParser.Helpers.LookaheadHelpers do
defp has_still_opening_backtix([{:other, _} | rest], nil),
do: has_still_opening_backtix(rest, nil)

# Mystery fix, in Earmark the lexer behaves differently
defp has_still_opening_backtix([{:verbatim, _} | rest], nil),
do: has_still_opening_backtix(rest, nil)

defp has_still_opening_backtix([{:backtix, btx} | rest], nil),
do: has_still_opening_backtix(rest, {:new, btx})

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule EarmarkParser.MixProject do
use Mix.Project

@version "1.4.20"
@version "1.4.20-pre"
@url "https://github.com/RobertDober/earmark_parser"

@deps [
Expand Down

0 comments on commit 5e49d19

Please sign in to comment.