
Wechat Article Formatter
- 188 installs
- 74 repo stars
- Updated March 23, 2026
- iamzifei/wechat-article-formatter-skill
Format long-form drafts into WeChat Official Account layouts with headings, spacing, images, and mobile-friendly styling before publishing to Chinese readers.
About
Transforms raw markdown or HTML drafts into WeChat Official Account article markup with consistent typography, section breaks, embedded media placeholders, and platform-specific conventions so teams can publish faster on China's dominant messaging channel.
- WeChat article layout
- Mobile-friendly formatting
- Heading and image blocks
- Official Account publishing prep
- Chinese social distribution
Wechat Article Formatter by the numbers
- 188 all-time installs (skills.sh)
- +19 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #255 of 688 Office & Documents skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/iamzifei/wechat-article-formatter-skill --skill wechat-article-formatterAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 188 |
|---|---|
| repo stars | ★ 74 |
| Last updated | March 23, 2026 |
| Repository | iamzifei/wechat-article-formatter-skill ↗ |
What it does
Format long-form drafts into WeChat Official Account layouts with headings, spacing, images, and mobile-friendly styling before publishing to Chinese readers.
Files
WeChat Article Formatter & Publisher
Format markdown articles with bm.md styling and publish directly to WeChat Official Account drafts via the official API.
Overview
1. Read markdown file (typically wechat.md from article directory) 2. Upload local images to WeChat CDN via media/uploadimg API 3. Replace local image paths with WeChat CDN URLs in markdown 4. Render markdown to styled HTML via bm.md API with custom CSS 5. Publish to WeChat draft via official draft/add API
CRITICAL: Do NOT use third-party publishing APIs (e.g. 微绿 wechat-publish). They strip inline CSS styles. Always use WeChat's official draft/add API directly.
Credentials
Read from ~/.env:
| Variable | Purpose |
|---|---|
WECHAT_APP_ID | WeChat Official Account AppID |
WECHAT_APP_SECRET | WeChat Official Account AppSecret |
If not found, prompt the user to provide them and save to ~/.env.
Workflow
Step 1: Identify Input
The user provides a markdown file path (e.g. wechat.md in an article directory).
Detect the article directory to find:
promotion.md→ extract digest/summary_attachments/→ local images- Brand config from the conversation context → author name
Step 2: Get WeChat Access Token
params = urlencode({
'grant_type': 'client_credential',
'appid': WECHAT_APP_ID,
'secret': WECHAT_APP_SECRET
})
# GET https://api.weixin.qq.com/cgi-bin/token?{params}If error 40164 (IP not in whitelist), instruct user to add the IP at: mp.weixin.qq.com → 设置与开发 → 基本配置 → IP白名单.
Step 3: Upload Images to WeChat CDN
CRITICAL: Upload ALL images in the SAME session. WeChat CDN URLs from previous sessions may expire.
Use media/uploadimg API for inline content images:
# POST https://api.weixin.qq.com/cgi-bin/media/uploadimg?access_token={token}
# Content-Type: multipart/form-data
# Body: media=@image_file
# Response: {"url": "http://mmbiz.qpic.cn/..."}Use material/add_material API for cover/thumb image:
# POST https://api.weixin.qq.com/cgi-bin/material/add_material?access_token={token}&type=image
# Content-Type: multipart/form-data
# Body: media=@cover_image
# Response: {"media_id": "...", "url": "..."}For remote images (e.g. https://i.ibb.co/...), download first, then upload to WeChat CDN.
After uploading, replace all local/remote image paths in the markdown with WeChat CDN URLs before rendering.
Step 4: Render with bm.md
Read custom CSS from {{SKILL_DIR}}/styles/custom.css.
IMPORTANT: Write the JSON payload to a temp file and use curl -d @file to avoid shell escaping issues.
payload = json.dumps({
"markdown": md_content,
"markdownStyle": "green-simple",
"codeTheme": "kimbie-light",
"customCss": css_content,
"enableFootnoteLinks": True,
"openLinksInNewWindow": True,
"platform": "wechat"
}, ensure_ascii=False)
# Write to /tmp/bm-payload.json, then:
# curl -s -X POST https://bm.md/api/markdown/render \
# -H "Content-Type: application/json" \
# -d @/tmp/bm-payload.jsonThe ensure_ascii=False is critical — without it, Chinese characters become \uXXXX escape sequences.
Step 5: Publish to WeChat Draft
draft_payload = json.dumps({
"articles": [{
"title": title,
"author": author, # e.g. "在悉尼和稀泥"
"thumb_media_id": thumb_media_id, # from Step 3 material upload
"content": html, # from Step 4 bm.md render
"digest": digest, # from promotion.md, max ~60 Chinese chars
"need_open_comment": 1, # enable comments
"only_fans_can_comment": 0, # allow all users to comment
"original_article_type": 1, # declare as original content
"reward_wording": "喜欢这篇文章,请我喝杯咖啡", # enable tipping
"creation_source_type": 1 # 个人观点,仅供参考
}]
}, ensure_ascii=False).encode('utf-8')
# POST https://api.weixin.qq.com/cgi-bin/draft/add?access_token={token}Default publish settings:
| Field | Value | Description |
|---|---|---|
need_open_comment | 1 | Enable comments |
only_fans_can_comment | 0 | All users can comment |
original_article_type | 1 | Declare as original |
reward_wording | "喜欢这篇文章,请我喝杯咖啡" | Enable tipping |
creation_source_type | 1 | 个人观点,仅供参考 |
Digest extraction from promotion.md:
Look for ## 文章摘要 section, extract text, truncate to ~60 Chinese characters (WeChat limit is 120 bytes).
Author resolution (first match wins): 1. User explicitly specified 2. Brand config author field 3. Brand config 品牌名称 field
Step 6: Report Result
WeChat Publishing Complete!
Title: {title}
Author: {author}
Digest: {digest}
Original: ✓ declared
Tipping: ✓ enabled
Comments: ✓ open to all
Images: {N} uploaded to WeChat CDN
media_id: {media_id}
→ Preview at: https://mp.weixin.qq.com (内容管理 → 草稿箱)Markdown Content Order for WeChat
When building the WeChat markdown, elements should appear in this order:
1. 关注引导文字 (e.g. 👆 「关注」加「星标」...)
2. 封面图 (cover image)
3. --- 分隔线
4. 正文内容 (article body with inline images)
5. --- 分隔线
6. 作者介绍 (about author section)
7. --- 分隔线
8. 推广区块 (promo blockquote with image)
9. --- 分隔线
10. 互动引导 (engagement CTA)The H1 title should be REMOVED from markdown — WeChat displays its own title from the title field.
Common Pitfalls
| Pitfall | Solution |
|---|---|
Chinese shows as \uXXXX | Use ensure_ascii=False in ALL json.dumps() calls |
| Images not displaying | Upload in same session; don't reuse old CDN URLs |
| Styles stripped (plain text) | Use WeChat official draft/add API, NOT third-party APIs |
40164 IP whitelist error | Add current IP at mp.weixin.qq.com → 基本配置 → IP白名单 |
45004 digest too long | Keep digest under 60 Chinese characters |
40007 invalid media_id | Upload cover via material/add_material first to get thumb_media_id |
> [!NOTE] renders wrong | Convert GitHub alerts to regular > blockquotes for WeChat |
bm.md API Reference
Render: POST https://bm.md/api/markdown/render
| Parameter | Type | Default | Description |
|---|---|---|---|
markdown | string | required | Markdown content |
markdownStyle | string | ayu-light | Style ID (use green-simple) |
codeTheme | string | kimbie-light | Code highlight theme |
customCss | string | "" | Custom CSS scoped to #bm-md |
enableFootnoteLinks | boolean | true | Convert links to footnotes |
openLinksInNewWindow | boolean | true | Links open in new window |
platform | string | html | Target: html, wechat, zhihu, juejin |
Available styles: ayu-light, bauhaus, blueprint, botanical, green-simple, maximalism, neo-brutalism, newsprint, organic, playful-geometric, professional, retro, sketch, terminal
Styling Features
The custom CSS (styles/custom.css) provides:
- Optima/Microsoft YaHei fonts
- Green accent color (rgb(53, 179, 120))
- H2 headings: white text on black background
- Bold text: green color
- Blockquotes: green left border
- Responsive tables with alternating row colors
- Code blocks with dark background
Dependencies
- WeChat Official Account API credentials (
~/.env) - bm.md rendering service (no auth required)
- Custom CSS at
{{SKILL_DIR}}/styles/custom.css
# OS files
.DS_Store
Thumbs.db
# Editor files
*.swp
*.swo
*~
.idea/
.vscode/
# Temporary files
*.tmp
*.temp
*.log
# Output files
*.html
!examples/*.html
WeChat Article Formatter Skill
A Claude Code skill that formats markdown files into beautifully styled HTML optimized for WeChat public account articles.
Features
- Converts Markdown to styled HTML using bm.md rendering service
- Automatic local image upload - Detects local images in markdown, uploads them, and replaces paths with online URLs
- Custom CSS styling optimized for WeChat article readability
- Green accent color theme with clean typography
- Support for GFM (GitHub Flavored Markdown) syntax
- Code syntax highlighting with green-simple theme
- Automatic footnote link conversion
- Optional integration with WeChat article publisher
Installation
Add this skill to your Claude Code installation:
claude skill add git@github.com:iamzifei/wechat-article-formatter-skill.gitOr via HTTPS:
claude skill add https://github.com/iamzifei/wechat-article-formatter-skill.gitUsage
Invoke the skill in Claude Code:
/wechat-article-formatterThen provide either:
- A path to your markdown file:
/path/to/my-article.md - Or paste markdown content directly
Example
/wechat-article-formatter
Please format my article at ~/articles/tech-post.mdThe skill will: 1. Read your markdown file 2. Apply custom WeChat-optimized styling 3. Detect and upload local images (replacing paths with online URLs) 4. Call the bm.md API to render the HTML 5. Save the formatted HTML to the same directory 6. Offer to publish as a draft to your WeChat account
Image Handling
The skill automatically handles local images in your markdown:
 # Relative path - will be uploaded
 # Absolute path - will be uploaded
 # Online URL - skipped (already online)Supported image formats: PNG, JPG, JPEG, GIF, WebP, SVG
Images are uploaded using the /image-upload skill and replaced with shareable URLs (e.g., Catbox, ImgBB).
Output
The formatted HTML includes:
- Inline CSS styles (no external dependencies)
- WeChat-compatible markup
- Properly styled headings, paragraphs, lists, and code blocks
- Responsive design for mobile reading
Customization
Modifying Styles
Edit styles/custom.css to customize the appearance:
- Primary color:
rgb(53, 179, 120)(green accent) - Font family: Optima, Microsoft YaHei, PingFangSC-regular
- Base font size: 16px (body), 15px (paragraphs)
API Configuration
The skill uses the following bm.md API settings:
| Parameter | Value | Description |
|---|---|---|
markdownStyle | green-simple | Base styling theme for rendered output |
platform | wechat | Output optimized for WeChat |
enableFootnoteLinks | true | Convert links to footnotes |
openLinksInNewWindow | true | Links open in new window |
customCss | (from styles/custom.css) | Custom CSS passed as string |
Integration
This skill works with:
- [image-upload](https://github.com/iamzifei/image-upload-skill) - Automatically uploads local images referenced in your markdown to online hosting providers
- [WeChat Article Publisher](https://github.com/iamzifei/wechat-article-publisher-skill) - Optionally publish formatted articles as drafts to your WeChat public account
Project Structure
wechat-article-formatter-skill/
├── skill.md # Skill definition and instructions
├── styles/
│ └── custom.css # Custom CSS for article styling
└── README.md # This fileRequirements
- Claude Code CLI
- Internet access for bm.md API calls
/image-uploadskill installed (for local image support)
License
MIT License
Author
Created for use with Claude Code.
Related
- bm.md - Markdown rendering service
- wechat-article-publisher-skill - Publish articles to WeChat
/**
* Custom CSS styles for WeChat article formatting
* Used with bm.md rendering service
*
* This file defines the visual styling for rendered markdown content,
* optimized for WeChat public account articles.
*/
#bm-md {
margin: 0px;
padding: 0px 10px;
background: none 0% 0% / auto no-repeat scroll padding-box border-box rgba(0, 0, 0, 0);
width: auto;
font-family: Optima, "Microsoft YaHei", PingFangSC-regular, serif;
font-size: 16px;
color: rgb(0, 0, 0);
line-height: 1.5em;
word-spacing: 0em;
letter-spacing: 0em;
word-break: break-word;
overflow-wrap: break-word;
text-align: left;
}
#bm-md p {
color: rgb(89, 89, 89);
font-size: 15px;
line-height: 1.8em;
letter-spacing: 0.04em;
text-align: left;
text-indent: 0em;
margin: 0px;
padding: 8px 0px;
}
#bm-md strong {
color: rgb(53, 179, 120);
font-weight: bold;
background: none 0% 0% / auto no-repeat scroll padding-box border-box rgba(0, 0, 0, 0);
width: auto;
height: auto;
margin: 0px;
padding: 0px;
border-style: none;
border-width: 3px;
border-color: rgba(0, 0, 0, 0.4);
border-radius: 0px;
}
#bm-md h1 {
margin: 30px 0px 15px;
padding: 0px;
display: flex;
border-bottom: 4px;
}
#bm-md h1 span {
font-size: 24px;
color: rgba(53, 179, 120, 1);
line-height: 1.5em;
letter-spacing: 0em;
font-weight: bold;
display: block;
}
#bm-md figure {
margin: 10px 0px;
padding: 0px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#bm-md figure img {
border-style: none;
border-width: 3px;
border-color: rgba(0, 0, 0, 0.4);
border-radius: 0px;
object-fit: fill;
box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
}
#bm-md img {
display: block;
margin: 0px auto;
max-width: 100%;
}
#bm-md ul {
list-style-type: disc;
margin: 8px 0px;
padding: 0px 0px 0px 25px;
color: rgb(0, 0, 0);
}
#bm-md ul li span {
color: rgb(89, 89, 89);
font-size: 15px;
line-height: 1.8em;
letter-spacing: 0.04em;
text-align: left;
font-weight: normal;
}
#bm-md ul span {
margin-top: 5px;
margin-bottom: 5px;
}
#bm-md hr {
margin: 10px 0px;
padding: 0px;
border-style: solid none none;
border-width: 1px 3px 3px;
border-color: rgb(53, 179, 120) rgba(0, 0, 0, 0.4) rgba(0, 0, 0, 0.4);
border-radius: 0px;
background: none 0% 0% / auto no-repeat scroll padding-box border-box rgba(0, 0, 0, 0);
width: auto;
height: 1px;
}
#bm-md h2 .prefix,
#bm-md h2 .suffix,
#bm-md h3 .prefix,
#bm-md h3 .suffix {
display: none;
}
#bm-md h2 {
margin: 30px 0px 15px;
align-items: unset;
background: none 0% 0% / auto no-repeat scroll padding-box border-box transparent;
border-style: none;
border-width: 1px;
border-color: rgb(0, 0, 0);
border-radius: 0px;
box-shadow: none;
display: flex;
flex-direction: unset;
float: unset;
height: auto;
justify-content: center;
line-height: 1.5em;
overflow: unset;
padding: 0px;
position: relative;
text-align: left;
text-shadow: none;
transform: none;
width: auto;
-webkit-box-reflect: unset;
}
#bm-md h2 span {
font-size: 18px;
color: rgb(255, 255, 255);
background: none 0% 0% / auto no-repeat scroll padding-box border-box rgb(0, 0, 0);
line-height: 1.5em;
letter-spacing: 0em;
padding: 2px 10px;
align-items: unset;
border-style: none;
border-width: 1px;
border-color: rgb(0, 0, 0);
border-radius: 0px;
box-shadow: none;
content: unset;
display: block;
font-weight: bold;
flex-direction: unset;
float: unset;
height: auto;
justify-content: unset;
margin: 0px;
overflow: unset;
position: relative;
text-align: left;
text-indent: 0em;
text-shadow: none;
transform: none;
width: auto;
-webkit-box-reflect: unset;
}
#bm-md h3 {
margin: 30px 0px 15px;
padding: 0px;
display: flex;
}
#bm-md h4 {
margin-top: 30px;
margin-bottom: 15px;
margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
display: block;
}
#bm-md h5 {
margin: 30px 0px 15px;
padding: 0px;
display: block;
}
#bm-md h3 span {
font-size: 20px;
color: rgb(53, 179, 120);
line-height: 1.5em;
letter-spacing: 0em;
font-weight: bold;
display: block;
}
#bm-md blockquote {
margin: 20px 0px;
padding: 10px 10px 10px 20px;
border-style: none none none solid;
border-width: 3px;
border-color: rgba(0, 0, 0, 0.4) rgba(0, 0, 0, 0.4) rgba(0, 0, 0, 0.4) rgb(53, 179, 120);
border-radius: 0px;
background: none 0% 0% / auto no-repeat scroll padding-box border-box rgb(251, 249, 253);
width: auto;
height: auto;
box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
display: block;
overflow: auto;
}
#bm-md .figure-table {
margin: 0px;
padding: 0px;
overflow-x: auto;
}
#bm-md .figure-table table {
display: table;
text-align: left;
}
#bm-md .figure-table table thead tr th:nth-of-type(n) {
min-width: 85px;
}
#bm-md .figure-table table thead tr th {
color: rgb(89, 89, 89);
font-size: 15px;
line-height: 1.5em;
letter-spacing: 0.04em;
text-align: left;
font-weight: bold;
background: none 0% 0% / auto no-repeat scroll padding-box border-box rgb(240, 240, 240);
width: auto;
height: auto;
border-style: solid;
border-width: 1px;
border-color: rgba(204, 204, 204, 0.4);
border-radius: 0px;
padding: 5px 10px;
}
#bm-md .figure-table table tbody {
font-size: 15px;
line-height: 1.5em;
letter-spacing: 0.04em;
text-align: left;
font-weight: normal;
border: 0px;
}
#bm-md .table-container table tbody tr:nth-of-type(2n+1) {
color: rgb(89, 89, 89);
background: none 0% 0% / auto no-repeat scroll padding-box border-box rgb(255, 255, 255);
width: auto;
height: auto;
}
#bm-md .table-container table tbody tr:nth-of-type(2n+1) td {
border-style: solid;
border-width: 1px;
border-color: rgba(204, 204, 204, 0.4);
border-radius: 0px;
}
#bm-md .table-container table tbody tr:nth-of-type(2n) {
color: rgb(89, 89, 89);
background: none 0% 0% / auto no-repeat scroll padding-box border-box rgb(248, 248, 248);
width: auto;
height: auto;
}
#bm-md .table-container table tbody tr:nth-of-type(2n) td {
border-style: solid;
border-width: 1px;
border-color: rgba(204, 204, 204, 0.4);
border-radius: 0px;
}
#bm-md .table-container table tbody tr td:nth-of-type(n) {
min-width: 85px;
}
#bm-md .table-container table tbody tr td {
padding: 5px 10px;
}
#bm-md pre {
margin-top: 10px;
margin-bottom: 10px;
margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
}
#bm-md pre code {
display: -webkit-box;
font-family: Consolas, Monaco, Menlo, monospace;
font-size: 12px;
-webkit-overflow-scrolling: touch;
padding-top: 15px;
background: #282c34;
border-radius: 5px;
}
#bm-md p code {
color: rgba(30, 107, 184, 1);
font-size: 14px;
line-height: 1.8em;
letter-spacing: 0em;
background-attachment: scroll;
background-clip: border-box;
background-color: rgba(27, 31, 35, 0.05);
background-image: none;
background-origin: padding-box;
background-position-x: left;
background-position-y: top;
background-repeat: no-repeat;
background-size: auto;
width: auto;
height: auto;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 2px;
margin-right: 2px;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 4px;
padding-right: 4px;
border-top-style: none;
border-bottom-style: none;
border-left-style: none;
border-right-style: none;
border-top-width: 3px;
border-bottom-width: 3px;
border-left-width: 3px;
border-right-width: 3px;
border-top-color: rgba(0, 0, 0, 1);
border-bottom-color: rgba(0, 0, 0, 0.4);
border-left-color: rgba(0, 0, 0, 0.4);
border-right-color: rgba(0, 0, 0, 0.4);
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
word-wrap: break-word;
font-family: Consolas, Monaco, Menlo, monospace;
word-break: break-all;
}
#bm-md em {
color: rgba(53, 179, 120, 1);
font-style: italic;
background-attachment: scroll;
background-clip: border-box;
background-color: rgba(0, 0, 0, 0);
background-image: none;
background-origin: padding-box;
background-position-x: left;
background-position-y: top;
background-repeat: no-repeat;
background-size: auto;
width: auto;
height: auto;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
border-top-style: none;
border-bottom-style: none;
border-left-style: none;
border-right-style: none;
border-top-width: 3px;
border-bottom-width: 3px;
border-left-width: 3px;
border-right-width: 3px;
border-top-color: rgba(0, 0, 0, 0.4);
border-bottom-color: rgba(0, 0, 0, 0.4);
border-left-color: rgba(0, 0, 0, 0.4);
border-right-color: rgba(0, 0, 0, 0.4);
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
}
#bm-md s {
color: rgba(0, 0, 0, 1);
font-style: italic;
}
#bm-md ol {
list-style-type: decimal;
margin-top: 8px;
margin-bottom: 8px;
margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 25px;
padding-right: 0px;
color: rgba(0, 0, 0, 1);
}
#bm-md a {
color: rgba(53, 179, 120, 1);
font-weight: bold;
border-top-style: none;
border-bottom-style: solid;
border-left-style: none;
border-right-style: none;
border-top-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-right-width: 1px;
border-top-color: rgba(30, 107, 184, 1);
border-bottom-color: rgba(53, 179, 120, 1);
border-left-color: rgba(30, 107, 184, 1);
border-right-color: rgba(30, 107, 184, 1);
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
text-decoration: none;
word-wrap: break-word;
}
#bm-md .footnote-ref {
color: rgba(53, 179, 120, 1);
font-weight: bold;
}
#bm-md .markdown-alert-note {
margin-top: 20px;
margin-bottom: 20px;
margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 20px;
padding-right: 20px;
border-top-style: none;
border-bottom-style: none;
border-left-style: none;
border-right-style: none;
border-top-width: 3px;
border-bottom-width: 3px;
border-left-width: 3px;
border-right-width: 3px;
border-top-color: rgba(0, 0, 0, 0.4);
border-bottom-color: rgba(0, 0, 0, 0.4);
border-left-color: rgba(0, 0, 0, 0.4);
border-right-color: rgba(0, 0, 0, 0.4);
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
background-attachment: scroll;
background-clip: border-box;
background-color: rgba(250, 250, 250, 1);
background-image: none;
background-origin: padding-box;
background-position-x: left;
background-position-y: top;
background-repeat: no-repeat;
background-size: auto;
width: auto;
height: auto;
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
display: block;
}
#bm-md .markdown-alert-title {
display: none;
}