GitbookIO / plugin-codesnippet

Block to easily insert a file as a code block

Home Page:https://plugins.gitbook.com/plugin/codesnippet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Include code snippets in your GitBook

This plugins makes it easy to import code files or uses variables in codeblocks in your GitBook.

How to use it?

Add it to your book.json configuration:

{
    "plugins": ["codesnippet"]
}

And then in your content:

This is a code snippet:

{% codesnippet "./myfile.js" %}{% endcodesnippet %}

Using a specific language:

This is a code snippet, display as HTML:

{% codesnippet "./myfile.ejs", language="html" %}{% endcodesnippet %}

Include a range of lines:

This is a code snippet, display as HTML:

{% codesnippet "./myfile.ejs", lines="2:5" %}{% endcodesnippet %}

Code blocks with templating syntax:

This is a code snippet, display as HTML:

{% codesnippet %}
curl {{ book.hostname|d("http://localhost") }}/myapi
{% endcodesnippet %}

About

Block to easily insert a file as a code block

https://plugins.gitbook.com/plugin/codesnippet

License:Apache License 2.0


Languages

Language:JavaScript 100.0%