Skip to content

Commit

Permalink
chore(ci) check links (Kong#1516)
Browse files Browse the repository at this point in the history
* chore(ci) setup a link-checker to run via travis-ci

* fix(ci) debug why this doesn't work on travis-ci

* fix(ci) adjust travis-ci permissions

* chore(ci) travis-c permissions

* chore(dependency) add the broken link checker dependency

* chore(ci) setup travis-ci to run the link checker

* fix(ruby) had to rebuild the Gemfile.lock

* chore(ci) exclude demo and kong-cloud links from link checker

* chore(dependencies) reset dependencies to what they are on master branch

* fix(links) fix some broken links
  • Loading branch information
hutchic authored and Aron Eidelman committed Oct 16, 2019
1 parent 1765c14 commit 90337c9
Show file tree
Hide file tree
Showing 42 changed files with 90 additions and 64 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
install
.env
.che
.vagrant
Expand All @@ -13,7 +14,6 @@
yarn.lock

# jekyll
Gemfile.lock
dist
.jekyll-metadata

Expand Down
17 changes: 11 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
dist: xenial
sudo: false

language: generic

services:
- docker

notifications:
email: false

before_install:
- docker-compose build
- touch Gemfile.lock
- mkdir node_modules
- chmod -R 777 .
script:
- make clean
- docker-compose build
- mkdir dist
- sudo chmod -R 777 .
- make docker-test
- make check-links
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# This should mirror the jekyll version in the Gemfile
FROM jekyll/jekyll:3.8.6

RUN apk add --update autoconf automake file build-base nasm musl libpng-dev zlib-dev
RUN apk add --update autoconf automake file build-base nasm musl libpng-dev zlib-dev curl
RUN apk add --update-cache --upgrade curl

WORKDIR /srv/jekyll
COPY Makefile /srv/jekyll
COPY Makefile /srv/jekyll/Makefile

RUN make install-prerequisites

RUN chmod -R 777 /usr/lib/node_modules \
&& usermod -a -G root jekyll

EXPOSE 3000 3001

HEALTHCHECK CMD curl --fail http://localhost:5000/ || exit 1
26 changes: 20 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,38 @@ install-prerequisites:
npm install -g gulp

install:
-mkdir node_modules
chmod 777 node_modules
npm install
bundle install
yarn --ignore-engines
yarn upgrade
touch install

run: install
-chmod -R 777 dist
gulp

develop:
docker-compose up

clean:
-docker-compose stop
-docker-compose rm -f
-rm -rf dist
-rm yarn.lock
-rm -rf node_modules
-rm install

test: install
npm test

docker-test:
COMMAND="make test" docker-compose up

check-links:
background-docker-up:
docker-compose up -d
while [ `curl -s -o /dev/null -w ''%{http_code}'' localhost:3000` != 200 ]; do echo "waiting"; docker-compose logs --tail=2 jekyll; sleep 20; done
docker-compose exec jekyll yarn blc http://localhost:3000 -efr --exclude careers --exclude hub
-while [ `curl -s -o /dev/null -w ''%{http_code}'' localhost:3000` != 200 ]; do echo "waiting"; docker-compose logs --tail=10 jekyll; sleep 45; done

docker-test: background-docker-up
docker-compose exec jekyll npm test

check-links: background-docker-up
docker-compose exec jekyll yarn blc http://localhost:3000 -efr --exclude careers --exclude hub --exclude request-demo --exclude kong-cloud
2 changes: 1 addition & 1 deletion app/0.11.x/proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ topic we just covered.
[plugin-configuration-object]: /{{page.kong_version}}/admin-api#plugin-object
[plugin-development-guide]: /{{page.kong_version}}/plugin-development
[load-balancing-reference]: /{{page.kong_version}}/loadbalancing
[configuration-reference]: /{{page.kong_version}}/configuration-reference
[configuration-reference]: /{{page.kong_version}}/configuration/
[adding-your-api]: /{{page.kong_version}}/getting-started/adding-your-api
[API]: /{{page.kong_version}}/admin-api
[api-entity]: /{{page.kong_version}}/admin-api/#add-api
Expand Down
2 changes: 1 addition & 1 deletion app/0.12.x/proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ topic we just covered.
[plugin-configuration-object]: /{{page.kong_version}}/admin-api#plugin-object
[plugin-development-guide]: /{{page.kong_version}}/plugin-development
[load-balancing-reference]: /{{page.kong_version}}/loadbalancing
[configuration-reference]: /{{page.kong_version}}/configuration-reference
[configuration-reference]: /{{page.kong_version}}/configuration/
[adding-your-api]: /{{page.kong_version}}/getting-started/adding-your-api
[API]: /{{page.kong_version}}/admin-api
[api-entity]: /{{page.kong_version}}/admin-api/#add-api
Expand Down
2 changes: 1 addition & 1 deletion app/0.14.x/plugin-development/plugin-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ return CustomHandler
```

Note that the above example uses the
[kong.log.inspect](http://localhost:3000/docs/0.14.x/pdk/kong.log/#kong_log_inspect)
[kong.log.inspect](/{{page.kong_version}}/pdk/kong.log/#kong_log_inspect)
function of the [Plugin Development Kit] to print out those values to the Kong
logs.

Expand Down
2 changes: 1 addition & 1 deletion app/1.0.x/plugin-development/plugin-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ return CustomHandler
```

Note that the above example uses the
[kong.log.inspect](http://localhost:3000/docs/0.14.x/pdk/kong.log/#kong_log_inspect)
[kong.log.inspect](/{{page.kong_version}}/pdk/kong.log/#kong_log_inspect)
function of the [Plugin Development Kit] to print out those values to the Kong
logs.

Expand Down
2 changes: 1 addition & 1 deletion app/1.0.x/proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ just covered.
[plugin-development-guide]: /{{page.kong_version}}/plugin-development
[plugin-association-rules]: /{{page.kong_version}}/admin-api/#precedence
[load-balancing-reference]: /{{page.kong_version}}/loadbalancing
[configuration-reference]: /{{page.kong_version}}/configuration-reference
[configuration-reference]: /{{page.kong_version}}/configuration/
[configuration-trusted-ips]: /{{page.kong_version}}/configuration/#trusted_ips
[configuring-a-service]: /{{page.kong_version}}/getting-started/configuring-a-service
[API]: /{{page.kong_version}}/admin-api
Expand Down
2 changes: 1 addition & 1 deletion app/1.1.x/plugin-development/plugin-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ return CustomHandler
```

Note that the above example uses the
[kong.log.inspect](http://localhost:3000/docs/0.14.x/pdk/kong.log/#kong_log_inspect)
[kong.log.inspect](/{{page.kong_version}}/pdk/kong.log/#kong_log_inspect)
function of the [Plugin Development Kit] to print out those values to the Kong
logs.

Expand Down
2 changes: 1 addition & 1 deletion app/1.1.x/proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ just covered.
[plugin-development-guide]: /{{page.kong_version}}/plugin-development
[plugin-association-rules]: /{{page.kong_version}}/admin-api/#precedence
[load-balancing-reference]: /{{page.kong_version}}/loadbalancing
[configuration-reference]: /{{page.kong_version}}/configuration-reference
[configuration-reference]: /{{page.kong_version}}/configuration/
[configuration-trusted-ips]: /{{page.kong_version}}/configuration/#trusted_ips
[configuring-a-service]: /{{page.kong_version}}/getting-started/configuring-a-service
[API]: /{{page.kong_version}}/admin-api
Expand Down
2 changes: 1 addition & 1 deletion app/1.2.x/plugin-development/plugin-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ return CustomHandler
```

Note that the above example uses the
[kong.log.inspect](http://localhost:3000/docs/0.14.x/pdk/kong.log/#kong_log_inspect)
[kong.log.inspect](/{{page.kong_version}}/pdk/kong.log/#kong_log_inspect)
function of the [Plugin Development Kit] to print out those values to the Kong
logs.

Expand Down
2 changes: 1 addition & 1 deletion app/1.2.x/proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ just covered.
[plugin-development-guide]: /{{page.kong_version}}/plugin-development
[plugin-association-rules]: /{{page.kong_version}}/admin-api/#precedence
[load-balancing-reference]: /{{page.kong_version}}/loadbalancing
[configuration-reference]: /{{page.kong_version}}/configuration-reference
[configuration-reference]: /{{page.kong_version}}/configuration/
[configuration-trusted-ips]: /{{page.kong_version}}/configuration/#trusted_ips
[configuring-a-service]: /{{page.kong_version}}/getting-started/configuring-a-service
[api]: /{{page.kong_version}}/admin-api
Expand Down
2 changes: 1 addition & 1 deletion app/1.3.x/plugin-development/plugin-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ return CustomHandler
```

Note that the above example uses the
[kong.log.inspect](http://localhost:3000/docs/0.14.x/pdk/kong.log/#kong_log_inspect)
[kong.log.inspect](/{{page.kong_version}}/pdk/kong.log/#kong_log_inspect)
function of the [Plugin Development Kit] to print out those values to the Kong
logs.

Expand Down
2 changes: 1 addition & 1 deletion app/1.3.x/proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,7 @@ just covered.
[plugin-development-guide]: /{{page.kong_version}}/plugin-development
[plugin-association-rules]: /{{page.kong_version}}/admin-api/#precedence
[load-balancing-reference]: /{{page.kong_version}}/loadbalancing
[configuration-reference]: /{{page.kong_version}}/configuration-reference
[configuration-reference]: /{{page.kong_version}}/configuration/
[configuration-trusted-ips]: /{{page.kong_version}}/configuration/#trusted_ips
[configuring-a-service]: /{{page.kong_version}}/getting-started/configuring-a-service
[API]: /{{page.kong_version}}/admin-api
Expand Down
2 changes: 1 addition & 1 deletion app/enterprise/0.31-x/developer-portal/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ Congratulations! You have now authenticated your Dev Portal.

For more information and details on configuring other authentication methods, keep reading!

> If your Dev Portal does not render after following these steps, check out the [FAQ](/enterprise/{{ page.kong_version }}/developer-portal/FAQ).
> If your Dev Portal does not render after following these steps, check out the [FAQ](/enterprise/{{ page.kong_version }}/developer-portal/faq/).
## Files

Expand Down
2 changes: 1 addition & 1 deletion app/enterprise/0.31-x/getting-started/adding-consumers.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Plugins, feel free to read more on Kong in one of the following documents:
[key-auth]: /plugins/key-authentication
[API-consumers]: /0.12.x/admin-api#create-consumer
[consumers]: /0.12.x/admin-api#consumer-object
[enabling-plugins]: /{{page.kong_version}}/getting-started/enabling-plugins
[enabling-plugins]: /enterprise/{{page.kong_version}}/getting-started/enabling-plugins
[configuration]: /0.12.x/configuration
[CLI]: /0.12.x/cli
[proxy]: /0.12.x/proxy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ You should now be redirected to [http://127.0.0.1:8003/dashboard] where, as a De

For more information and details on configuring other authentication methods, and [Logging In](#logging-in) keep reading!

> If your Dev Portal does not render after following these steps, check out the <a href="/enterprise/{{page.kong_version}}/developer-portal/FAQ">FAQ</a>.
> If your Dev Portal does not render after following these steps, check out the <a href="/enterprise/{{page.kong_version}}/developer-portal/faq/">FAQ</a>.
## Example configurations

Expand Down
2 changes: 1 addition & 1 deletion app/enterprise/0.32-x/getting-started/adding-consumers.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Plugins, feel free to read more on Kong in one of the following documents:
[key-auth]: /plugins/key-authentication
[API-consumers]: /0.13.x/admin-api#create-consumer
[consumers]: /0.13.x/admin-api#consumer-object
[enabling-plugins]: /{{page.kong_version}}/getting-started/enabling-plugins
[enabling-plugins]: /enterprise/{{page.kong_version}}/getting-started/enabling-plugins
[configuration]: /0.13.x/configuration
[CLI]: /0.13.x/cli
[proxy]: /0.13.x/proxy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ You should now be redirected to [http://127.0.0.1:8003/dashboard] where, as a De

For more information and details on configuring other authentication methods, and [Logging In](#logging-in) keep reading!

> If your Dev Portal does not render after following these steps, check out the <a href="/enterprise/{{page.kong_version}}/developer-portal/FAQ">FAQ</a>.
> If your Dev Portal does not render after following these steps, check out the <a href="/enterprise/{{page.kong_version}}/developer-portal/faq/">FAQ</a>.
## Example configurations

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ curl -L -u<$UserName>@kong<$API_KEY> "https://kong.bintray.com/<$repoName>/licen


## What Next?
Great! Now that you have your license, you can follow [this guide](/enterprise/{{page.kong_version}}installation/docker) for instructions on how to use it to start Kong EE.
Great! Now that you have your license, you can follow [this guide](/enterprise/{{page.kong_version}}/installation/docker) for instructions on how to use it to start Kong EE.
Original file line number Diff line number Diff line change
Expand Up @@ -423,9 +423,9 @@ Dev Portal File API request based the `auth-store-types` value, until you
</div>
<div class="docs-grid">
<div class="docs-grid-block">
<h4><a href="/enterprise/{{page.kong_version}}/developer-portal/configuration/smtp">SMTP</a></h4>
<h4><a href="/enterprise/{{page.kong_version}}/developer-portal/configuration/smtp/">SMTP</a></h4>
<p>Learn about SMTP and the Dev Portal.</p>
<a href="/enterprise/{{page.kong_version}}/developer-portal/configuration/smtp">Learn More &rarr;</a>
<a href="/enterprise/{{page.kong_version}}/developer-portal/configuration/smtp/">Learn More &rarr;</a>
</div>

<div class="docs-grid-block">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ For more information on the Dev Portal properties available, checkout out the
</div>

<div class="docs-grid-block">
<h3><img src="/assets/images/icons/documentation/icn-window.svg" /><a href="/enterprise/{{page.kong_version}}/property-reference/developer-portal/smtp">SMTP Configuration</a></h3>
<h3><img src="/assets/images/icons/documentation/icn-window.svg" /><a href="/enterprise/{{page.kong_version}}/property-reference/#default-dev-portal-smtp-configuration">SMTP Configuration</a></h3>
<p>Learn how to configure the Dev Portal SMTP server.</p>
<a href="/enterprise/{{page.kong_version}}/developer-portal/configuration/smtp">Learn more &rarr;</a>
<a href="/enterprise/{{page.kong_version}}/developer-portal/configuration/smtp/">Learn more &rarr;</a>
</div>

<div class="docs-grid-block">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ scheme://<WORKSPACE>.<HOSTNAME>
</div>

<div class="docs-grid-block">
<h3><img src="/assets/images/icons/documentation/icn-window.svg" /><a href="/enterprise/{{page.kong_version}}/developer-portal/smtp">SMTP Configuration</a></h3>
<h3><img src="/assets/images/icons/documentation/icn-window.svg" /><a href="/enterprise/{{page.kong_version}}/property-reference/#default-dev-portal-smtp-configuration">SMTP Configuration</a></h3>
<p>Learn how to configure the Dev Portal SMTP server.</p>
<a href="/enterprise/{{page.kong_version}}/developer-portal/configuration/smtp">Learn more &rarr;</a>
<a href="/enterprise/{{page.kong_version}}/developer-portal/configuration/smtp/">Learn more &rarr;</a>
</div>

<div class="docs-grid-block">
Expand Down
5 changes: 2 additions & 3 deletions app/enterprise/0.34-x/developer-portal/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ you can accomplish this through Custom JS included as a handlebars partial.
Currently the Kong Dev Portal can only render API specifications that are
served by the File API.


[file_types]: /enterprise/{{page.kong_version}}/developer-portal/file-management#file-types
[property_portal]: /enterprise/{{page.kong_version}}/developer-portal/configuration/property-reference#portal
[file_types]: /enterprise/{{page.kong_version}}/developer-portal/management/file-management/
[property_portal]: /enterprise/{{page.kong_version}}/property-reference/#dev-portal
[configuration_network]: /enterprise/{{page.kong_version}}/developer-portal/configuration/networking
5 changes: 3 additions & 2 deletions app/enterprise/0.34-x/kong-manager/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,11 @@ toc: false
<div class="docs-grid-block">
<h3>
<img src="/assets/images/icons/documentation/icn-window.svg" />
<a href="/enterprise/{{page.kong_version}}/kong-manager/organization-management/managing-admins">Managing Admins</a>
<a href="/enterprise/{{page.kong_version}}/kong-manager/organization-management/managing-admins/">Managing Admins</a>
<a href="/enterprise/{{page.kong_version}}/kong-manager/organization-management/managing-admins/">Managine Admins</a>
</h3>
<p>Invite and keep track of every team member, all from one place</p>
<a href="/enterprise/{{page.kong_version}}/organization-management/managing-admins">Learn more &rarr;</a>
<a href="/enterprise/{{page.kong_version}}/kong-manager/organization-management/managing-admins/">Learn more &rarr;</a>
</div>

<div class="docs-grid-block">
Expand Down
2 changes: 1 addition & 1 deletion app/enterprise/0.34-x/plugin-development/entities-cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ module will store the miss just as if it was a hit. This means that a
propagated by Kong so that all nodes that stored the miss can evict it, and
properly fetch the newly created API key from the datastore.

See the [Clustering Guide](/{{page.kong_version}}/clustering/) to ensure
See the [Clustering Guide](/enterprise/{{page.kong_version}}/clustering/) to ensure
that you have properly configured your cluster for such invalidation events.

### Manual cache invalidation
Expand Down
2 changes: 1 addition & 1 deletion app/enterprise/0.34-x/proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -1058,7 +1058,7 @@ just covered.
[plugin-development-guide]: /enterprise/{{page.kong_version}}/plugin-development
[plugin-association-rules]: /enterprise/{{page.kong_version}}/admin-api/#precedence
[load-balancing-reference]: /enterprise/{{page.kong_version}}/loadbalancing
[configuration-reference]: /enterprise/{{page.kong_version}}/property-reference-reference
[configuration-reference]: /enterprise/{{page.kong_version}}/property-reference
[configuration-trusted-ips]: /enterprise/{{page.kong_version}}/property-reference/#trusted_ips
[configuring-a-service]: /enterprise/{{page.kong_version}}/getting-started/configuring-a-service
[API]: /enterprise/{{page.kong_version}}/admin-api
Expand Down
2 changes: 1 addition & 1 deletion app/enterprise/0.35-x/admin-api/audit-log.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ allows cluster administrators to keep detailed track of changes made to the
cluster configuration throughout its lifetime, aiding in compliance efforts and
providing valuable data points during forensic investigations. Generated audit
log trails are [Workspace](/enterprise/{{page.kong_version}}/admin-api/workspaces/reference)
- and [RBAC](/enterprise/{{page.kong_version}}/admin-api/rbac/rbac)-aware,
- and [RBAC](/enterprise/{{page.kong_version}}/admin-api/rbac/reference/)-aware,
providing Kong operators a deep and wide look into changes happening within
the cluster.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: Running Multiple Dev Portals with Workspaces
### Introduction

Kong supports running multiple instances of the Dev Portal with the use of
[**Workspaces**](/admin-api/workspaces). This allows each Workspace to enable
[**Workspaces**](/enterprise/{{page.kong_version}}/admin-api/workspaces/reference/). This allows each Workspace to enable
and maintain separate Dev Portals (complete with separate files, settings, and
authorization) from a within a single instance of Kong.

Expand Down Expand Up @@ -43,7 +43,7 @@ curl -X PATCH http://localhost:8001/workspaces/<WORKSPACE_NAME> \

On intialization, Kong will populate the new Dev Portal with the [**Default Settings**](#defining-dev-portals-default-settings) defined in Kong's configuration file.

>*Note* A Workspace can only enable a Dev Portal if the Dev Portal feature has been enabled in Kong's configuration. See [Enabling the Dev Portal](/developer-portal/configuration/enable-the-dev-portal) for more information.
>*Note* A Workspace can only enable a Dev Portal if the Dev Portal feature has been enabled in Kong's configuration. See [Enabling the Dev Portal](/enterprise/{{page.kong_version}}/developer-portal/configuration/) for more information.

## Defining the Dev Portal's URL structure
Expand All @@ -65,7 +65,7 @@ cannot be edited via the Kong Manager.

## Overriding Default Settings

On initialization, the Dev Portal will be configured using the [**Default Portal Settings**](/developer-portal/configuration/enable-the-dev-portal#default-settings) defined in Kong's configuration file.
On initialization, the Dev Portal will be configured using the [**Default Portal Settings**](/enterprise/{{page.kong_version}}/developer-portal/configuration/workspaces/#overriding-default-settings) defined in Kong's configuration file.

These settings can be manually overriden in the Dev Portals **Settings** tab
in the Kong Manager or by patching the setting directly.
Expand Down
2 changes: 1 addition & 1 deletion app/enterprise/0.35-x/logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For this example, let’s say you want to remove any instances of an email addre

## Log Levels

Log levels are set in [Kong's configuration](/{{page.kong_version}}/property-reference/#log_level). Following are the log levels in increasing order of their severity, `debug`, `info`,
Log levels are set in [Kong's configuration](/enterprise/{{page.kong_version}}/property-reference/#log_level). Following are the log levels in increasing order of their severity, `debug`, `info`,
`notice`, `warn`, `error` and `crit`.

- *`debug`:* It provides debug information about the plugin's runloop and each individual plugin or other components. Only to be used during debugging since it is too chatty.
Expand Down
2 changes: 1 addition & 1 deletion app/enterprise/0.35-x/plugin-development/distribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ reasons:
* "plugin is enabled but not installed" -> The plugin's name is present in the
`plugins` directive, but that Kong is unable to load the `handler.lua`
source file from the file system. To resolve, make sure that the
[lua_package_path](/{{page.kong_version}}/property-reference/#development-miscellaneous-section)
[lua_package_path](/enterprise/{{page.kong_version}}/property-reference/#development-miscellaneous-section)
directive is properly set to load this plugin's Lua sources.

* "no configuration schema found for plugin" -> The plugin is installed,
Expand Down
Loading

0 comments on commit 90337c9

Please sign in to comment.