diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-02-10 08:06:53 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-02-10 08:06:53 -0800 |
commit | b6cf490efd214552b5d36b0c67bdfa0705cc1130 (patch) | |
tree | c193c472a2eae9ba5ec3d0a4a4b0464240c7bc2b /test/Tests/Writers | |
parent | d0a5f2aded6ace0e6310b622d6560fa9fee1d9e3 (diff) | |
download | pandoc-b6cf490efd214552b5d36b0c67bdfa0705cc1130.tar.gz |
Use latest skylighting.
Diffstat (limited to 'test/Tests/Writers')
-rw-r--r-- | test/Tests/Writers/HTML.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Tests/Writers/HTML.hs b/test/Tests/Writers/HTML.hs index dfacda608..de8b1ef17 100644 --- a/test/Tests/Writers/HTML.hs +++ b/test/Tests/Writers/HTML.hs @@ -34,7 +34,7 @@ tests :: [TestTree] tests = [ testGroup "inline code" [ "basic" =: code "@&" =?> "<code>@&</code>" , "haskell" =: codeWith ("",["haskell"],[]) ">>=" - =?> "<code class=\"sourceCode haskell\"><span class=\"fu\">>>=</span></code>" + =?> "<code class=\"sourceCode haskell\"><span class=\"op\">>>=</span></code>" , "nolanguage" =: codeWith ("",["nolanguage"],[]) ">>=" =?> "<code class=\"nolanguage\">>>=</code>" ] |