Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/janole/embed-code

A tiny component to render code with highlight.js inside of a terminal-like window.
https://github.com/janole/embed-code

code javascript javascript-library npm

Last synced: 26 days ago
JSON representation

A tiny component to render code with highlight.js inside of a terminal-like window.

Awesome Lists containing this project

README

        

# embed-code

A tiny component to render code with [highlight.js](https://highlightjs.org/) inside of a terminal-like window.

![How to embed the code](doc/screenshot-1.png)

## HOWTO

There are basically two ways of embedding the code. Both options will be using a simple JavaScript that is going to replace itself with the rendered code inside of a nice looking terminal window.

### 1. Plain text inside of the script tag

```html

function Welcome(props)
{
return <h1>Hello, {props.name}</h1>;
}

```

### 2. JSON encoded data inside of the script tag

```html

{"lang": "js", "code": "function Welcome(props)\n{\n return <h1>Hello, {props.name}<\/h1>;\n}"}

```

The result will be looking like this:

![The embedded code](doc/screenshot-2.png)

## CDN

The latest `embed-code.js` is available from unpkg.com:

```diff
https://unpkg.com/embed-code@latest/embed-code.js
```

## WHY

I want to use this component in a Wordpress blog that's going to be filled from a github repository with markdown posts ...