docs: Update for v2.2

This commit is contained in:
Matthew Holt 2020-09-25 12:53:11 -06:00
parent 30084b98b0
commit af3676862b
No known key found for this signature in database
GPG key ID: 2A349DD577D586A5
11 changed files with 161 additions and 18 deletions

View file

@ -44,7 +44,7 @@ $(function() {
? '/docs/caddyfile/directives'
: '/docs/caddyfile/directives/' + text;
$(item)
.html('<a href="' + url + '" style="color: inherit;"></a>')
.html('<a href="' + url + '" style="color: inherit;" title="Directive"></a>')
.find('a')
.text(text);
});
@ -57,7 +57,7 @@ $(function() {
.map(function(k, item) {
let text = item.innerText;
$(item)
.html('<a href="/docs/caddyfile/matchers" style="color: inherit;"></a>')
.html('<a href="/docs/caddyfile/matchers" style="color: inherit;" title="Matcher token"></a>')
.find('a')
.text(text);
});