Skip to content

Commit

Permalink
Knit: fix handling of backquote when making anchor reference
Browse files Browse the repository at this point in the history
  • Loading branch information
elizarov committed May 6, 2019
1 parent e3030e3 commit 8003932
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions knit/src/Knit.kt
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,7 @@ fun makeSectionRef(name: String): String = name
.replace(",", "")
.replace("(", "")
.replace(")", "")
.replace("`", "")
.toLowerCase()

class Include(val regex: Regex, val lines: MutableList<String> = arrayListOf())
Expand Down

0 comments on commit 8003932

Please sign in to comment.