-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switched to using jsoup to validate fragments
Also, modified link validation so links to the same page with different fragments only load/download that page once.
- Loading branch information
Showing
7 changed files
with
127 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
lazy val root = (project in file(".")) | ||
.enablePlugins(ParadoxPlugin) | ||
|
||
lazy val additionalInternalMappings = settingKey[List[(File, String)]]("Additional mappings to add to paradox mappings") | ||
lazy val additionalMappings = settingKey[List[(File, String)]]("Additional mappings to add to paradox mappings") | ||
|
||
additionalInternalMappings := Nil | ||
additionalMappings := Nil | ||
(Compile / paradox / mappings) ++= additionalInternalMappings.value | ||
(Compile / paradoxValidateInternalLinks / mappings) ++= additionalMappings.value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters