mdannotation-alert

0.3.0 • Public • Published

Markdown Annotation @alert

Markdown annotation is a posthtml plugin to create alert components.

Quick start

npm i mdannotation-alert --save

Usage

Use the @alert annotation directly in your Markdown

@alert warning
Lorem Ipsum
<div class="md-alert md-alert--warning" role="alert">
	Lorem Ipsum
</div>

Tips

To have some nice alerts, you could add the following rules:

.md-alert {
	padding: 0.5em 1em;
	margin-bottom: 1em;
	border: 1px solid transparent;
	border-radius: 5px;
}
.md-alert--warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}
.md-alert--info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}

Readme

Keywords

Package Sidebar

Install

npm i mdannotation-alert

Weekly Downloads

1

Version

0.3.0

License

MIT

Last publish

Collaborators

  • tzi