-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from Koen1999/docs
Improved documentation website
- Loading branch information
Showing
16 changed files
with
130 additions
and
48 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
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,8 @@ | ||
--- | ||
myst: | ||
html_meta: | ||
"description lang=en": "suricata-check is a command line utility to provide feedback on Suricata rules to by detecting issues through static analysis." | ||
"keywords": "Suricata, suricata-check, Python, Contributing" | ||
--- | ||
```{include} ../CONTRIBUTING.md | ||
``` |
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,8 @@ | ||
--- | ||
myst: | ||
html_meta: | ||
"description lang=en": "suricata-check is a command line utility to provide feedback on Suricata rules to by detecting issues through static analysis." | ||
"keywords": "Suricata, rules, ruleset, suricata-check" | ||
--- | ||
```{include} ../README.md | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
User-agent: * | ||
|
||
Sitemap: https://suricata-check.teuwen.net/sitemap.xml |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
var script = document.createElement("script"); | ||
|
||
script.setAttribute("async", ""); | ||
script.setAttribute("src", "https://umami.suricata-check.teuwen.net/script.js"); | ||
script.setAttribute("data-website-id", "122e579a-0a3b-41c2-8b20-9a3cbec8dc76"); | ||
script.setAttribute("data-do-not-track", "true"); | ||
script.setAttribute("data-domains", "suricata-check.teuwen.net"); | ||
|
||
window.addEventListener('load', function () { | ||
document.body.appendChild(script); | ||
|
||
(() => { | ||
const name = 'internal-link-click'; | ||
document.querySelectorAll('a').forEach(a => { | ||
if (a.host === window.location.host && !a.getAttribute('data-umami-event')) { | ||
a.setAttribute('data-umami-event', name); | ||
a.setAttribute('data-umami-event-source', window.location.href); | ||
a.setAttribute('data-umami-event-target', a.href); | ||
} | ||
}); | ||
})(); | ||
|
||
(() => { | ||
const name = 'outbound-link-click'; | ||
document.querySelectorAll('a').forEach(a => { | ||
if (a.host !== window.location.host && !a.getAttribute('data-umami-event')) { | ||
a.setAttribute('data-umami-event', name); | ||
a.setAttribute('data-umami-event-source', window.location.href); | ||
a.setAttribute('data-umami-event-target', a.href); | ||
} | ||
}); | ||
})(); | ||
}); |
This file was deleted.
Oops, something went wrong.
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