WorkflowsJun 27, 2026

One Markdown Draft, Many Channels: WeChat, Xiaohongshu, and PDF

Same content for WeChat, Xiaohongshu, and PDF means reformatting on every platform. This article walks a real publish pipeline—write once in .md, then convert for WeChat, Xiaohongshu cards, and PDF delivery—with pitfalls at each step.

Same content: WeChat wants long-form, Xiaohongshu wants image cards, archives want PDF—reformatting per platform is the biggest hidden time sink for creators. The fix is not working harder; it is establishing a single content source: write once in Markdown, convert per platform.

Core argument illustration

Why Should Multi-Channel Publishing Start with Markdown?

Markdown is plain text with clear structure and no platform styling system. Word carries Office styles; WeChat rich text carries inline CSS—they are "native" to a platform. A .md file only describes structure (headings, lists, code, images) and leaves appearance to downstream renderers.

That is the lever for multi-channel publishing: separate content from presentation. Maintain one .md; convert to rich text for WeChat, image cards for Xiaohongshu, PDF for archives—without rewriting the body. Below, the pipeline splits into four steps; each solves one stage and flags its pitfalls.

Step 1: Write the Body in a Markdown Editor

Start with a clean .md—the source for every downstream channel. Use an online editor with source on the left and live preview on the right; confirm heading levels, lists, code blocks, and tables as you write.

Tool: Markdown online editor. Drafts auto-save in the browser; switching tabs does not lose work. The pitfall here is sloppy structure—skipped heading levels or messy list indentation misalign later card splits and conversions. Habit: regular heading hierarchy, one idea per paragraph; the next three steps get easier.

Step 2: Convert to WeChat Rich Text

WeChat's editor does not parse Markdown and strips class-based styles, so convert .md to inline-styled rich text before pasting.

Tool: Markdown to WeChat. Paste content; the right panel shows real WeChat styling. Click "Copy to WeChat" and paste into the backend. Pitfalls: local images and diagrams—let the tool auto-detect uploads; Mermaid and formulas are not supported natively, so convert to PNG first (see Step 5).

Step 3: Split into Xiaohongshu Image Cards

Xiaohongshu is an image feed, not long text. It needs long copy split into multiple 3:4 / 4:5 image cards by section.

Tool: Markdown to Xiaohongshu. By default, splits at level-2 headings (##); use --- for manual break points. Pitfall: split granularity—too much text per card feels cramped; merge sections by demoting ## to ###, or add --- to split finer. Tutorials, reading notes, and learning content fit the "knowledge card" format well.

Step 4: Export PDF / Word for Archive or Delivery

Export the same .md as PDF or Word for archives, submissions, or recipients who only accept formal files.

Tool: Markdown convert. PDF uses professional typesetting fonts and syntax-highlighted code; Word yields editable .docx. Pitfall: very long documents—for 200+ pages, split by level-2 headings, export separately, then merge to avoid browser memory pressure.

How Do Charts and Formulas Reuse Across Platforms?

This is where multi-channel publishing most often stalls: WeChat and Xiaohongshu do not render Mermaid or LaTeX source. The unified fix is convert to images and insert back into Markdown.

In the Mermaid diagram tool, render flowcharts, sequence diagrams, or architecture diagrams, export PNG, and insert into your .md. They become ordinary images—WeChat, Xiaohongshu, and PDF all carry them with the content, without redrawing per platform.

Full Pipeline at a Glance

Step Solves Tool Main pitfall
1 Write Single content source Markdown online editor Sloppy structure breaks later steps
2 WeChat Inline-styled rich text Markdown to WeChat Images/diagrams not native
3 Xiaohongshu Long text → image cards Markdown to Xiaohongshu Split too coarse or too fine
4 Archive PDF / Word export Markdown convert Very long docs, memory limits
Cross-step Diagram reuse Mermaid → PNG Platforms don't render source

Boundaries: When Multi-Channel Is Not Worth It

If content is strongly platform-specific—lifestyle photo posts meant only for Xiaohongshu, or marketing image longreads meant only for WeChat—forcing one generic .md across platforms fights the medium. The sweet spot is text- and structure-heavy knowledge content: tutorials, notes, industry analysis, reading summaries. High information density that works everywhere gets the most reuse value.

Summary

Multi-channel publishing saves time when one Markdown file is the single source and content stays separate from presentation. Write the bodyconvert for WeChatsplit for Xiaohongshuexport PDF/Word; diagrams uniformly go through Mermaid to image. The value is not more tools—it is avoiding each step's pitfalls without reformatting the body.

Tools used in this article

Markdown Editor

Don't know how to open a .md file? Drop it in your browser to view and edit instantly. Online Markdown editor with live side-by-side preview, code highlighting, image upload, and dark mode. Drafts auto-save locally — 100% private.

MD to WeChat

For Markdown writers who already draft in Obsidian, VSCode, or Typora: paste your .md, see a true WeChat-style live preview, copy and paste into the WeChat editor with all formatting preserved. Supports local image uploads: images referenced in your Markdown are detected automatically, uploaded and stored in browser IndexedDB (persists across page reloads), or import a ZIP / folder to batch-import images. Code highlighting, blockquotes, tables — all rendered the way WeChat displays them.

MD to RedNote

Turn a Markdown note (tech blog, study notes, knowledge digest) into a multi-card Xiaohongshu carousel. Auto-splits by H2 headings or `---` dividers, renders as 3:4 / 4:5 image cards with multiple themes designed for the Markdown-writer audience.

MD Export

Free online converter: turn Markdown / .md files into PDF, Word (.docx), or images (PNG/JPG). Chinese fonts, syntax highlighting, tables and task lists preserved. Smart PDF pagination never clips content. No Pandoc, no install — 100% browser-based, files never uploaded.

Mermaid Diagram

Online Mermaid diagram editor with real-time preview. Type Mermaid syntax and instantly render flowcharts, sequence diagrams, class diagrams, ER diagrams, Gantt charts, and pie charts. Export as SVG or PNG. Runs entirely in your browser — code never leaves your device.

Frequently Asked Questions

Markdown is plain text with clear structure and no platform-specific styling. Write once, then convert separately to WeChat rich text, Xiaohongshu image cards, or PDF/Word—without reformatting from scratch for each platform. It acts as a single content source.