Skip to content

Commit

Permalink
I198 (#212)
Browse files Browse the repository at this point in the history
* removing the migration stuff for now, updating travis

* adds test and closes #198

* whitespace change
  • Loading branch information
tlienart authored Sep 5, 2019
1 parent f0c2d02 commit ea04031
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 314 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ julia:
- 1.0
- 1.1
- 1.2
- 1.3
- nightly
matrix:
allow_failures:
Expand Down
48 changes: 0 additions & 48 deletions src/migration/jekyll.jl

This file was deleted.

266 changes: 0 additions & 266 deletions test/_jekyll_conversion/put-this-in-your-pipe/original.md

This file was deleted.

19 changes: 19 additions & 0 deletions test/converter/markdown3.jl
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,22 @@ end
whereas the <code>Hello</code> after the <code>run</code>
command is printed output.</p>""")
end


@testset "i198" begin
st = raw"""
Essentially three things are imitated from LaTeX
1. you can introduce definitions using `\newcommand`
1. you can use hyper-references with `\eqref`, `\cite`, ...
1. you can show nice maths (via KaTeX)
""" * J.EOS

@test isapproxstr(st |> seval, raw"""
<p>Essentially three things are imitated from LaTeX</p>
<ol>
<li><p>you can introduce definitions using <code>\newcommand</code></p></li>
<li><p>you can use hyper-references with <code>\eqref</code>, <code>\cite</code>, ...</p></li>
<li><p>you can show nice maths &#40;via KaTeX&#41;</p></li>
</ol>
""")
end

0 comments on commit ea04031

Please sign in to comment.