fix: lint md files

This commit is contained in:
Cory Dransfeldt 2023-03-27 18:12:49 -07:00
parent 7b21a5b384
commit 55b45b8305
No known key found for this signature in database
7 changed files with 43 additions and 36 deletions

7
markdownlint.config.json Normal file
View file

@ -0,0 +1,7 @@
{
"default": true,
"MD013": { "line_length": "5000" },
"MD036": false,
"no-hard-tabs": false,
"whitespace": false
}

View file

@ -55,15 +55,15 @@
"tailwindcss": "^3.0.18" "tailwindcss": "^3.0.18"
}, },
"lint-staged": { "lint-staged": {
"**/*.{js,jsx,ts,tsx,json}": [ "**/*.{js,ts,json}": [
"npx prettier --write", "npx prettier --write",
"npx eslint --fix" "npx eslint --fix"
], ],
"**/*.scss": [ "**/*.scss": [
"npx prettier --write" "npx prettier --write"
], ],
"**/*.md": [ "**/*.{md,markdown}": [
"npx markdownlint --fix" "npx markdownlint --config ./markdownlint.config.json --fix"
] ]
} }
} }

View file

@ -11,7 +11,7 @@ My notes template uses four different text file names to differentiate between p
**Text post workflow:** **Text post workflow:**
``` ```text
'textastic://x-callback-url/new?name=note.text.txt&text=Title:%20[[title]]%0D----%0DDate:%20[[date|%m.%d.%Y]]%0D----%0DText:%20[[body]]' 'textastic://x-callback-url/new?name=note.text.txt&text=Title:%20[[title]]%0D----%0DDate:%20[[date|%m.%d.%Y]]%0D----%0DText:%20[[body]]'
``` ```
@ -23,7 +23,7 @@ _Consectetur adipiscing elit. Suspendisse imperdiet ullamcorper accumsan. Duis e
... the workflow above would create a text file in Textastic named note.text.txt that contains: ... the workflow above would create a text file in Textastic named note.text.txt that contains:
``` ```markdown
Title: Lorem ipsum dolor sit amet Title: Lorem ipsum dolor sit amet
---- ----
Date: 08.20.2013 Date: 08.20.2013
@ -41,7 +41,7 @@ _Consectetur adipiscing elit. Suspendisse imperdiet ullamcorper accumsan. Duis e
... as: ... as:
``` ```markdown
Title: Lorem ipsum dolor sit amet Title: Lorem ipsum dolor sit amet
---- ----
Date: 08.20.2013 Date: 08.20.2013
@ -51,19 +51,19 @@ Link: http://google.com
Text: Consectetur adipiscing elit. Suspendisse imperdiet ullamcorper accumsan. Duis et rhoncus odio. Vestibulum rhoncus nisl diam, non malesuada odio condimentum in. Morbi ut nisi nec erat viverra blandit at dapibus nibh. Text: Consectetur adipiscing elit. Suspendisse imperdiet ullamcorper accumsan. Duis et rhoncus odio. Vestibulum rhoncus nisl diam, non malesuada odio condimentum in. Morbi ut nisi nec erat viverra blandit at dapibus nibh.
``` ```
It's worth noting that this particular workflow is a bit messy inasmuch as I've included an arbitrary number of Drafts line tags to account for any additional paragraphs of text after the first. Using the [[body]] tag in this instance would result in the "Link: http://google.com" line being included with the text. It's worth noting that this particular workflow is a bit messy inasmuch as I've included an arbitrary number of Drafts line tags to account for any additional paragraphs of text after the first. Using the [[body]] tag in this instance would result in the "Link: <http://google.com>" line being included with the text.
The final two post types / work flows I use are identical to the first aside from the name of the file they supply to Textastic. They are as follows: The final two post types / work flows I use are identical to the first aside from the name of the file they supply to Textastic. They are as follows:
**Image post workflow:** **Image post workflow:**
``` ```text
'textastic://x-callback-url/new?name=note.image.txt&amp;text=Title:%20[[title]]%0D----%0DWhen:%20[[date|%m.%d.%Y]]%0D----%0DText:%20[[body]]' 'textastic://x-callback-url/new?name=note.image.txt&amp;text=Title:%20[[title]]%0D----%0DWhen:%20[[date|%m.%d.%Y]]%0D----%0DText:%20[[body]]'
``` ```
**Gallery post workflow:** **Gallery post workflow:**
``` ```text
textastic://x-callback-url/new?name=note.gallery.txt&amp;text=Title:%20[[title]]%0D----%0DWhen:%20[[date|%m.%d.%Y]]%0D----%0DText:%20[[body]] textastic://x-callback-url/new?name=note.gallery.txt&amp;text=Title:%20[[title]]%0D----%0DWhen:%20[[date|%m.%d.%Y]]%0D----%0DText:%20[[body]]
``` ```

View file

@ -17,14 +17,14 @@ They also offer [extensive documentation](https://www.fastmail.com/help/domain_m
**MX:** **MX:**
``` ```text
example.com. IN MX 10 in1-smtp.messagingengine.com example.com. IN MX 10 in1-smtp.messagingengine.com
example.com. IN MX 10 in1-smtp.messagingengine.com example.com. IN MX 10 in1-smtp.messagingengine.com
``` ```
**SPF:** **SPF:**
``` ```text
@ TXT "v=spf1 include:spf.messagingengine.com -all" @ TXT "v=spf1 include:spf.messagingengine.com -all"
``` ```