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 358ee5b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
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
6 changes: 2 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
defmodule EarmarkParser.MixProject do
use Mix.Project

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

@deps [
# {:credo, "~> 0.10", only: [:dev, :test]},
# {:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:earmark_ast_dsl, "~> 0.3.5", only: [:test]},
{:excoveralls, "~> 0.14.4", only: [:test]},
{:extractly, "~> 0.5.3", only: [:dev]},
Expand All @@ -31,7 +29,7 @@ defmodule EarmarkParser.MixProject do
[
app: :earmark_parser,
version: @version,
elixir: "~> 1.10",
elixir: "~> 1.11",
elixirc_paths: elixirc_paths(Mix.env()),
deps: @deps,
description: @description,
Expand Down

0 comments on commit 358ee5b

Please sign in to comment.