aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2017-01-16 14:05:15 +0100
committerFelix Mulder <felix.mulder@gmail.com>2017-01-31 14:32:35 +0100
commit6f6dc9767badd4bcacd8f00ef0ed467bcabc6296 (patch)
treee381a1be3195be8c69abb84a3e59b0c5470e557c /project
parent248f469ddcf57067d02e8b1bea41237766a75cfb (diff)
downloaddotty-6f6dc9767badd4bcacd8f00ef0ed467bcabc6296.tar.gz
dotty-6f6dc9767badd4bcacd8f00ef0ed467bcabc6296.tar.bz2
dotty-6f6dc9767badd4bcacd8f00ef0ed467bcabc6296.zip
Re-implement template expansion of references as filter
The original implementation used the template engine to recursively expand references. This was very error-prone and with no typesafety and proper stack traces it was very hard to diagnose. As such, these two expansions (links and references) have been re-implemented as filters.
Diffstat (limited to 'project')
-rw-r--r--project/Build.scala12
1 files changed, 6 insertions, 6 deletions
diff --git a/project/Build.scala b/project/Build.scala
index 025f5c2dd..dd492447a 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -185,13 +185,13 @@ object DottyBuild extends Build {
libraryDependencies ++= Seq("org.scala-lang.modules" %% "scala-xml" % "1.0.1",
"org.scala-lang.modules" %% "scala-partest" % "1.0.11" % "test",
dottyOrganization % "dottydoc-client" % "0.1.0",
- "com.vladsch.flexmark" % "flexmark" % "0.10.1",
- "com.vladsch.flexmark" % "flexmark-ext-gfm-tasklist" % "0.10.1",
- "com.vladsch.flexmark" % "flexmark-ext-gfm-tables" % "0.10.1",
- "com.vladsch.flexmark" % "flexmark-ext-autolink" % "0.10.1",
- "com.vladsch.flexmark" % "flexmark-ext-emoji" % "0.10.1",
+ "com.vladsch.flexmark" % "flexmark" % "0.11.1",
+ "com.vladsch.flexmark" % "flexmark-ext-gfm-tasklist" % "0.11.1",
+ "com.vladsch.flexmark" % "flexmark-ext-gfm-tables" % "0.11.1",
+ "com.vladsch.flexmark" % "flexmark-ext-autolink" % "0.11.1",
+ "com.vladsch.flexmark" % "flexmark-ext-emoji" % "0.11.1",
"com.vladsch.flexmark" % "flexmark-ext-gfm-strikethrough" % "0.11.1",
- "com.vladsch.flexmark" % "flexmark-ext-yaml-front-matter" % "0.10.3",
+ "com.vladsch.flexmark" % "flexmark-ext-yaml-front-matter" % "0.11.1",
"nl.big-o" % "liqp" % "0.6.7",
"com.novocode" % "junit-interface" % "0.11" % "test",
"com.github.spullara.mustache.java" % "compiler" % "0.9.3",