Skip to content

Commit 3c14e33

Browse files
gptvibeCopilot
andcommitted
Update sample input to showcase markdown-to demo
Replace the SAMPLE_INPUT string in src/App.tsx with a new demo-style Markdown example. The new sample provides an introduction to the tool, step-by-step usage, a docker run snippet, and a table showing how bold/italic/strikethrough map across WhatsApp, Telegram, and Discord — intended to better demonstrate the app's conversion behavior. Co-Authored-By: Copilot <198982749+Copilot@users.noreply.github.com>
1 parent 15fd252 commit 3c14e33

1 file changed

Lines changed: 20 additions & 11 deletions

File tree

src/App.tsx

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,31 @@ const PLATFORM_LABELS: Record<PlatformId, string> = {
1212
discord: 'Discord',
1313
}
1414

15-
const SAMPLE_INPUT = `# Product Update
15+
const SAMPLE_INPUT = `# Introducing markdown-to by GPTVibe
1616
17-
Hey team, here is the **launch summary**:
17+
Hey everyone! 🎉 We just launched **markdown-to** — a free tool that converts ChatGPT-style Markdown into _platform-ready_ formatting for WhatsApp, Telegram, and Discord.
1818
19-
1. The *mobile build* is live.
20-
2. Please review \`/release-notes\`.
21-
3. Escalations should go to [On-call Guide](https://example.com/on-call).
19+
Built entirely with [GitHub Copilot](https://github.com/features/copilot) as a pair-programming session — from converter engine to Docker deployment.
2220
23-
> Shipping quality matters more than speed.
21+
## What it does
2422
25-
| Area | Status |
26-
| --- | --- |
27-
| Auth | Done |
28-
| Billing | In review |
23+
1. Paste any **ChatGPT** response into the editor
24+
2. Pick your *target platform*
25+
3. Copy the converted output — ready to send!
2926
30-
Thanks!`
27+
> No more asterisks showing up as literal text in WhatsApp. Just clean, properly formatted messages.
28+
29+
\`\`\`bash
30+
docker run -d -p 43817:80 gptvibe/markdown-to:latest
31+
\`\`\`
32+
33+
| Platform | Bold | Italic | Strikethrough |
34+
| --- | --- | --- | --- |
35+
| WhatsApp | *text* | _text_ | ~text~ |
36+
| Telegram | *text* | _text_ | ~text~ |
37+
| Discord | **text** | *text* | ~~text~~ |
38+
39+
Give it a try and ⭐ the repo at [github.com/gptvibe/markdown-to](https://github.com/gptvibe/markdown-to)!`
3140

3241
function App() {
3342
const [input, setInput] = useState<string>(SAMPLE_INPUT)

0 commit comments

Comments
 (0)