From jutsu-markdown
Provides reference for core Markdown syntax: headings, text formatting, lists, links, images, code blocks, blockquotes. Use when writing or editing Markdown files.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jutsu-markdown:markdown-syntax-fundamentalsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Core markdown syntax for creating well-structured documents.
Core markdown syntax for creating well-structured documents.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
#) per document as the title*italic* or _italic_
**bold** or __bold__
***bold italic*** or ___bold italic___
~~strikethrough~~
Use `backticks` for inline code like `const x = 1`
- Item one
- Item two
- Nested item
- Another nested item
- Item three
* Alternative marker
+ Also works
1. First item
2. Second item
1. Nested numbered
2. Another nested
3. Third item
- [x] Completed task
- [ ] Incomplete task
- [ ] Another task
[Link text](https://example.com)
[Link with title](https://example.com "Title text")
[Link text][reference-id]
[reference-id]: https://example.com "Optional title"
<https://example.com>
<[email protected]>
[Jump to section](#section-heading)
Anchor IDs are auto-generated from headings:


![Alt text][image-id]
[image-id]: path/to/image.png "Optional title"
[](https://example.com)
```javascript
function hello() {
console.log("Hello, World!");
}
```
javascript / jstypescript / tspython / pybash / shell / shjson / yamlhtml / csssqlmarkdown / md // Four spaces or one tab
function example() {
return true;
}
> This is a blockquote.
> It can span multiple lines.
> Blockquotes can contain
>
> Multiple paragraphs.
> Outer quote
>> Nested quote
>>> Deeply nested
> ## Heading in blockquote
>
> - List item
> - Another item
>
> ```code block```
---
***
___
Use three or more hyphens, asterisks, or underscores.
\* Not italic \*
\# Not a heading
\[Not a link\]
\`Not code\`
Characters that can be escaped: \ ` * _ { } [ ] ( ) # + - . ! |
Line one with two trailing spaces
Line two (hard break)
Line one
Line two (paragraph break)
npx claudepluginhub thedotmack/han --plugin jutsu-markdownProvides reference for core Markdown syntax: headings, text formatting, lists, links, images, code blocks, blockquotes. Use when writing or editing Markdown files.
Covers markdown syntax, GitHub Flavored Markdown, Mermaid diagrams, and best practices for writing READMEs and documentation.
Enforces markdown line-wrap at 80 chars, heading spacing, and reference-style links for clean git diffs. Use when writing or editing any committed markdown documentation or skill file.