An open API service indexing awesome lists of open source software.

https://github.com/atomicojs/markdown


https://github.com/atomicojs/markdown

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# @atomico/markdown

Default package @uppercod/markdown-inline for Atomico

## Install

```
npm install @atomico/markdown
```

## Example

```jsx
import { c } from "atomico";
import md from "@atomico/markdown";

function component() {
return (
{md`
# Title

Markdown content:

**bold**

_italic_

| col | col |
| ------- | ------- |
| Value 1 | value 2 |

and more
`}
);
}

customElements.define("my-component", c(component));
```