Author high-quality Markdown documentation with deterministic structure, lint compliance, and CI integration. Use when writing README files, creating docs pages, fixing markdownlint failures, defining style rules, or wiring markdown checks into pre-commit and pipelines. Keywords: markdown, markdownlint, readme, docs, headings, lists, code fences, links, images, lint config, ci, documentation style.
Overall
score
100%
Does it follow best practices?
Validation for skill structure
Use > for blockquotes:
> This is a blockquote.> This is a blockquote
> that spans multiple lines.Or use a single >:
> This is a blockquote
that spans multiple lines.> First level
>> Second level
>>> Third level> ## Heading in Blockquote
>
> This blockquote contains:
>
> - A list item
> - Another item
>
> And a code block:
>
> ```javascript
> console.log('Hello');
> ```Create with three or more -, *, or _:
---
***
___End line with two spaces:
Line one with two spaces at end
Line twoUse blank line:
First paragraph
Second paragraphUse backslash to escape special characters:
\* Not italic \*
\# Not a heading
\[Not a link\](url)Characters that can be escaped:
\ ` * _ { } [ ] ( ) # + - . ! |Basic table syntax:
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 || Left aligned | Center aligned | Right aligned |
|:-------------|:--------------:|--------------:|
| Left | Center | Right || Feature | Description | Status |
|--------------|--------------------------------|--------|
| Authentication | OAuth 2.0 with JWT | ✅ |
| Authorization | Role-based access control | ✅ |
| Logging | Structured JSON logs | 🚧 |<div align="center">
<img src="logo.png" alt="Logo" width="200">
</div>
<details>
<summary>Click to expand</summary>
Hidden content here.
</details>
<kbd>Ctrl</kbd> + <kbd>C</kbd>
<sup>Superscript</sup> and <sub>subscript</sub>---)> **Note:** This feature requires Node.js 18 or higher.
> **Warning:** Deleting this resource cannot be undone.| Command | Description |
|---------|--------------------------|
| `start` | Starts the server |
| `stop` | Stops the server |
| `test` | Runs the test suite |<details>
<summary>View detailed error log</summary>
```bash
Error: Connection timeout
at connect (db.js:45)
at async main (index.js:12){
"MD009": {
"br_spaces": 2,
"list_item_empty_lines": false,
"strict": false
},
"MD010": {
"code_blocks": true,
"spaces_per_tab": 4
},
"MD026": {
"punctuation": ".,;:!?。,;:!?"
},
"MD033": {
"allowed_elements": ["details", "summary", "kbd", "sup", "sub", "br"]
},
"MD035": {
"style": "consistent"
}
}Install with Tessl CLI
npx tessl i pantheon-ai/markdown-authoring@0.1.1