-
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.
- Loading branch information
Showing
12 changed files
with
186 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
public/ | ||
static/ | ||
layouts/ | ||
themes/ | ||
|
||
# Ignore | ||
**/*.html | ||
**/Makefile | ||
.editorconfig | ||
.prettierignore | ||
.git* | ||
.hugo* | ||
Brew* | ||
pyproject* | ||
requirements* |
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,24 @@ | ||
{ | ||
"proseWrap": "preserve", | ||
"semi": false, | ||
"singleQuote": false, | ||
"useTabs": false, | ||
"tabWidth": 2, | ||
"trailingComma": "all", | ||
"printWidth": 92, | ||
"overrides": [ | ||
{ | ||
"files": "**/*.md", | ||
"options": { | ||
"tabWidth": 4, | ||
"useTabs": false, | ||
"singleQuote": false, | ||
"trailingComma": "all", | ||
"arrowParens": "avoid", | ||
"printWidth": 92, | ||
"proseWrap": "always", | ||
"embeddedLanguageFormatting": "off" | ||
} | ||
} | ||
] | ||
} |
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,34 +1,46 @@ | ||
# Comprehensive Markdown File with Various URL Definitions | ||
|
||
## Inline URLs | ||
|
||
This is an [inline URL](https://example.com). | ||
|
||
## Reference Style URLs | ||
|
||
This is a [reference style URL][ref-style]. | ||
|
||
## Reference Style with Title | ||
|
||
This is a [reference with title][ref-title]. | ||
|
||
## Footnote Style URLs | ||
|
||
This is a footnote[^1] URL. | ||
|
||
## Image URLs | ||
|
||
This is an image URL: ![Alt text](https://example.com/image.jpg "Image Title") | ||
|
||
## Image with Reference Style | ||
|
||
This is a referenced image: ![Alt text][image-ref] | ||
|
||
## Long URL | ||
This is a [long URL](https://www.terminusapp.com/blog/short-urls-vs-long-urls/#:~:text=On%20the%20other%20hand%2C%20long,folders%2C%20subfolders%2C%20and%20parameters.) | ||
|
||
This is a | ||
[long URL](https://www.terminusapp.com/blog/short-urls-vs-long-urls/#:~:text=On%20the%20other%20hand%2C%20long,folders%2C%20subfolders%2C%20and%20parameters.) | ||
|
||
## Automatic URL Linking | ||
|
||
<https://example.com> | ||
|
||
## Email Address Linking | ||
|
||
<mailto:[email protected]> | ||
|
||
## Reference Definitions | ||
|
||
[ref-style]: https://referencestyle.com | ||
[ref-title]: https://referencestyle.com "Reference Style with Title" | ||
[image-ref]: https://example.com/image.jpg | ||
|
||
[^1]: https://footnote.com |
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 @@ | ||
<!-- An empty markdown file --> |
Empty file.
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
Oops, something went wrong.