npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

korean-markdown-fixer

v1.0.1

Published

한국어 마크다운 깨짐 교정 라이브러리. **이렇게** 마크다운이 깨지는 것을 고칩니다. Korean markdown fixer. It fixes markdown **like this case**.

Downloads

167

Readme

Korean Markdown Fixer

npm version npm downloads license

한글 마크다운 작성 시, 특수문자와 인접한 볼드(Bold) 처리가 깨지는 현상을 해결해주는 초경량 라이브러리입니다.

A lightweight utility to fix Markdown rendering issues where Korean text formatting (like Bold) breaks when adjacent to special characters.

The Problem

표준 마크다운 파서에서는, 한글이 특수문자와 인접해 있을 경우, 볼드(**)와 같은 문법이 렌더링 되지 않는 현상이 발생합니다.

In standard Markdown parsers, Korean characters combined with bold syntax (**) often fail to render correctly if they are immediately preceded by special characters or punctuation without spacing.

Example of the issue:

  • As Is: **'중요'**합니다.
  • To Be: '중요' 합니다.

The Solution

이 라이브러리는 정규식을 통해 해당 엣지 케이스에 공백을 추가하여 마크다운 파서가 formatting token을 올바르게 인식하도록 합니다.

This library automatically detects these edge cases using Regex and inserts a space to ensure the Markdown parser recognizes the formatting tokens correctly.

Installation

npm install korean-markdown-fixer
# or
pnpm add korean-markdown-fixer
# or
yarn add korean-markdown-fixer

Usage

import { fixMarkdown } from "korean-markdown-fixer";
const raw = "이것은 **'중요'**합니다.";
const fixed = fixMarkdown(raw);
console.log(fixed); // space inserted

Contribution

문제가 생기거나, 좋은 아이디어가 있다면 여기서 이 라이브러리에 대한 기여를 해주세요!

If you have any problem or good ideas, please contribute to this library HERE!