Skip to content

Remove Markdown is a flutter package to help with stripping markdown off a string.

License

Notifications You must be signed in to change notification settings

wizlif/remove_markdown

Repository files navigation

Remove Markdown

This package is based on the idea of remove-markdown and is an attempt to implement this for dart projects.

Usage

Import the library

import 'package:remove_markdown/remove_markdown.dart';

Removing markdown

Remove markdown from a string:

const markdownString = '**Emphasis**';

// strip markdown off the string
// Result: Emphasis
print(markdownString.removeMarkdown());

Supported markdown

List of currently supported markdown bits

Feature Supported Tested
Paragraphs
Links
Images
Lists
Code blocks
Inline code
Emphasis
Headers
HTML Tags
Tables

Example previews

01 02 03

About

Remove Markdown is a flutter package to help with stripping markdown off a string.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published