generated from shgysk8zer0/npm-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Super Linter & add markdown example
- Loading branch information
1 parent
c304d17
commit 95b260a
Showing
6 changed files
with
109 additions
and
6 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,11 @@ | |
"imports": { | ||
"@aegisjsproject/": "../node_modules/@aegisjsproject/", | ||
"@aegisjsproject/router": "../router.js", | ||
"@aegisjsproject/router/": "../" | ||
"@aegisjsproject/router/": "../", | ||
"@highlightjs/cdn-assets/": "https://unpkg.com/@highlightjs/[email protected]/es/", | ||
"marked": "https://unpkg.com/[email protected]/lib/marked.esm.js", | ||
"marked-highlight": "https://unpkg.com/[email protected]/src/index.js", | ||
"highlight.js/": "https://unpkg.com/@highlightjs/[email protected]/es/" | ||
} | ||
} | ||
</script> | ||
|
@@ -27,6 +31,7 @@ | |
<button type="button" class="btn btn-primary" data-link="/product/1" data-name="Product 1" accesskey="1">Product 1</button> | ||
<button type="button" class="btn btn-primary" data-link="/product/2" data-name="Product 2" accesskey="2">Product 2</button> | ||
<a href="/product/3" class="btn btn-primary" accesskey="3">Product 3</a> | ||
<a href="/page/markdown" class="btn btn-primary" accesskey="m">Markdown Test</a> | ||
<button type="button" class="btn btn-primary" data-link="/search?q=shoes" accesskey="?">Search for Shoes</button> | ||
<button type="button" class="btn btn-primary" data-link="/img" accesskey="i">Random Image</button> | ||
<button type="button" class="btn btn-primary" data-link="/dne" accesskey="x">404 Page</button> | ||
|
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { md } from '@aegisjsproject/markdown/markdown.js'; | ||
|
||
export default md` | ||
## This is a mardown example. | ||
Go back to [home](/test/) | ||
![missing image](https://cdn.kernvalley.us/img/raster/missing-image.png) | ||
`; |