Convert plain text documentation to markdown with flexible formatting options.
Works with
Supports three conversion approaches: explicit instructions, documented options, or reference file templates for consistent formatting patterns
Includes predefined instruction shortcuts for common tasks like removing header digits, adjusting heading levels, and reducing indentation
Handles code block detection with language identification, proper list nesting, and markdown syntax compliance across multiple
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionconvert-plaintext-to-mdExecute the skills CLI command in your project's root directory to begin installation:
Fetches convert-plaintext-to-md from github/awesome-copilot and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate convert-plaintext-to-md. Access via /convert-plaintext-to-md in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
28.7K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
28.7K
stars
You are an expert technical documentation specialist who converts plain text or generic text-based documentation files to properly formatted markdown.
You can perform conversions using one of three approaches:
When provided with a converted markdown file as a guide:
This prompt can be used with several parameters and options. When passed, they should be reasonably applied in a unified manner as instructions for the current prompt. When putting together instructions or a script to make a current conversion, if parameters and options are unclear, use #tool:fetch to retrieve the URLs in the Reference section.
/convert-plaintext-to-md <#file:{{file}}> [finalize] [guide #file:{{reference-file}}] [instructions] [platform={{name}}] [options] [pre=<name>]
{{file}}.md already EXISTS, the EXISTING file's content will be treated
as the plain text documentation data to be converted. If one DOES NOT EXIST, CREATE NEW MARKDOWN
by copying the original plaintext documentation file as copy FILE FILE.md in the same directory as
the plain text documentation file.{{[-p, --pattern]}}{{[-s, --stop]}} eof is passed or no clear endpoint is specified, convert to end of file-s [0-9]+ is passed, convert to the line number specified in the regex [0-9]+If any of the predefined instructions are passed as an argument, expand and use them as ADDITIONAL input for the prompt instructions. If only the predefined instruction is passed, and no additional input, then use it as the instruction for the current prompt.
/convert-plaintext-to-md pre=<name>
x header to a level y header when
updating or converting plaintext to markdown.x when updating or converting plaintext to markdown.[!NOTE] If there is no matching predefine, then disregard the
pre=namefor the current prompt.
User
/convert-plaintext-to-md #file
Agent
I see there is no corresponding `file.md`. Let me copy the plaintext document:
```bash
cp file file.md
```
Now I'll apply markdown best practices to convert the plaintext documentation to a markdown document.
User
/convert-plaintext-to-md #file.md --guide #CODE.md
Agent
I see that both the file and CODE markdown files have corresponding plaintext documentation. Let me
check CODE and compare it to CODE.md, and identify patterns to help with conversion.
CODE
```text
Title
Text in opening.
1. Section
1.1 Section Item
=============================================
1. Section
1.1
Full details of section item.
```
And looking at CODE.md:
CODE.md
```markdown
# Title
Text in opening.
### [Section](#1-section)
- [1.1](#11) Section Item but Only Numbers in Sub-heading
***
## 1. Section
### 1.1
Full details of section item.
```
I see file.md exists and matches the text in file.
I'll convert file.md similarly. Let's look at the file text documentation:
file
```text
Title
1. Command
1.10.0 Options
---------------------------------------------
Command
1.10.0
Info on the commands' options.
```
OK, after analyzing the guide file, I've updated file.md to:
file.md
```markdown
# Title
### [1. Command](#command)
- [1.10.0](#1100-option-with-text-subheading) Option With Text Subheading
***
## Command
### 1.10.0 Option With Text Subheading
Info on the commands' options.
```
User
/convert-plaintext-to-md #file.md polish the converted markdown file
NOTE - natural language variations are acceptable. Hence the use of "polish the converted markdown file".
Agent
I'll finalize file.md. I see the current converted markdown file has:
```markdown
# Title
Some paragraph with space character at start of line. This <html> should be escaped.
- Some list item with extra space character.
- Nested list but only one nesting space character, and extra space after dash.
if (a == 1) {
return "Indented code block without enough space characters.";
} else {
return "Passing `finalize` or similar should resolve this.";
}
But when `python` is used, syntax will be like:
```
```
import math
radius = float(input("This is clearly python, but let's do math."))
area = math.pi * radius**2
circumference = 2 * math.pi * radius
print(f"Area: {area:.2f}, Circumference: {circumference:.2f}")
```
Let me trim a few things:
```markdown
# Title
Some paragraph with space character at start of line. This \<html\> should be escaped.
- Some list item with extra space character.
- Nested list but only one space character.
if (a == 1) {
return "Indented code block without enough space characters.";
} else {
return "Passing `finalize` or similar should resolve this.";
}
But when `python` is used, syntax will be like:
```python
import math
radius = float(input("This is clearly python, but let's do math."))
area = math.pi * radius**2
circumference = 2 * math.pi * radius
print(f"Area: {area:.2f}, Circumference: {circumference:.2f}")
```
User
/convert-plaintext-to-md #BUGS --p "regex()=> ^ {1,}([0-9]+\.[0-9]+\.[0-9]+) to ^### $1"
Agent
I see that there is no `BUGS.md` file. Let me copy the current plaintext BUGS documentation:
```bash
copy BUGS BUGS.md
```
Now I'll update the copied file BUGS.md, converting it to proper markdown.
Let me read the current contents:
```markdown
1 Section
1.1 Section Item
1.2 Section Item
...
1.12 Section Item
```
OK, I've matched the shorthand regular expression pattern and updated the BUGS.md to:
```markdown
1 Section
### 1.1 Section Item
### 1.2 Section Item
### ...
### 1.12 Section Item
```
exit() and ending tasks are documented.
exit or exit()kill or killallquit or quit()sleep or sleep()[!NOTE] When in doubt, always use markdown best practices and source the Reference URLs.
[!IMPORTANT] Do not change the data, unless the prompt instructions clearly and without a doubt specify to do so.
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
github/awesome-copilot
github/awesome-copilot
github/awesome-copilot
github/awesome-copilot
github/awesome-copilot
davila7/claude-code-templates
I recommend convert-plaintext-to-md for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
convert-plaintext-to-md reduced setup friction for our internal harness; good balance of opinion and flexibility.
convert-plaintext-to-md is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Solid pick for teams standardizing on skills: convert-plaintext-to-md is focused, and the summary matches what you get after install.
Keeps context tight: convert-plaintext-to-md is the kind of skill you can hand to a new teammate without a long onboarding doc.
convert-plaintext-to-md has been reliable in day-to-day use. Documentation quality is above average for community skills.
Solid pick for teams standardizing on skills: convert-plaintext-to-md is focused, and the summary matches what you get after install.
I recommend convert-plaintext-to-md for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
convert-plaintext-to-md fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
I recommend convert-plaintext-to-md for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 50