Count Markdown Words
Count words in Markdown content
AnalyzeHow it works
1. md-to-html Convert Markdown to HTML 2. html-to-text Convert HTML to plain text preserving line breaks 3. wc Word and character counter with line count
$ md-to-html | html-to-text | wc Examples
Count words in a Markdown blog draft before publishing
Usage
"# My Blog Post
This is a **great** article about _coding_.
..." | md-to-html | html-to-text | wc Check README word count for a GitHub project
Usage
"# README
## Installation
Run `npm install` to get started...." | md-to-html | html-to-text | wc Count words in meeting notes before sending summary
Usage
"# Meeting Notes
**Date**: Monday
## Discussion
We reviewe..." | md-to-html | html-to-text | wc