diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-08-04 18:01:05 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-14 19:00:54 -0400 |
commit | ee0ff5687d4002aab20cd91fd28d007d916af36c (patch) | |
tree | 113b44f267630804d0b0c3408800733290b5331f /src/SMAPI.Web/Views/JsonValidator/Index.cshtml | |
parent | f24e7428df15ee8bcc9a2a45de98363670e72231 (diff) | |
download | SMAPI-ee0ff5687d4002aab20cd91fd28d007d916af36c.tar.gz SMAPI-ee0ff5687d4002aab20cd91fd28d007d916af36c.tar.bz2 SMAPI-ee0ff5687d4002aab20cd91fd28d007d916af36c.zip |
add user-friendly doc link & error messages, document validator, improve manifest schema (#654)
Diffstat (limited to 'src/SMAPI.Web/Views/JsonValidator/Index.cshtml')
-rw-r--r-- | src/SMAPI.Web/Views/JsonValidator/Index.cshtml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml index 6658e7b9..5c3168e5 100644 --- a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml +++ b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml @@ -95,6 +95,11 @@ else if (Model.PasteID != null) </div> <h2>Validation errors</h2> + @if (Model.FormatUrl != null) + { + <p>See <a href="@Model.FormatUrl">format documentation</a>.</p> + } + @if (Model.Errors.Any()) { <table id="metadata" class="table"> |