npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

magicbook-codesplit

v0.1.6

Published

Codesplit plugin for magicbook

Downloads

27

Readme

Magicbook Codesplit

This is a plugin that allows you to write example code in .js files, and include them in your book. It will parse your JavaScript files into sections with code and comments, so you can lay out your example in a nice, intuitive way.

Using the plugin

First install the NPM package, either in your package.json file in your book repo, or by running the following.

npm i magicbook-codesplit

Then add the plugin to your config file.

{
  "addPlugins" : ["magicbook-codesplit"]
}

Inline

Simply add the .codesplit class to any <pre> tag with code you want to split.

<pre class="codesplit">// This is an example
var myName = "Rune Madsen";
</pre>

Files

Codesplit can load a file (like a liquid include) and split it. First create this file in examples/example.js.

// This is an example
var myName = "Rune Madsen";

Then add the following to your config file.

{
  "codesplit" : {
    "includes" : "examples"
  }
}

Then in your content, use the codesplit tag.

Now I want to show you an example.

{% codesplit example.js %}

For both of those examples, codesplit will output the following structure for you.

<p>Now I want to show you an example</p>

<div class="codesplit">
  <div class="pairs">
    <div class="codesplit-pair">
      <div class="codesplit-comment">
        <p>This is an example</p>
      </div>
      <div class="codesplit-code">
        <pre><code>var myName = "Rune Madsen";</code></pre>
      </div>
    </div>
  </div>
</div>

You have to write your own CSS to style these DIV's. The markup allows you to show the layout in a horizontal and vertical way.

Attributes

Inspired by Markdown Extra, you can use a special syntax to apply classes and other instructions to a code pair.

Classes

To add a class to a codepair, use the following syntax.

// This is my comment {.myClass}
var myName = "Rune Madsen"

This will add the .myClass class to the .pair output:

<div class="pair myClass">
  ...
</div>

This is helpful if you want to highlight a specific piece of code, etc.

Ids

To add an id to a codepair, use the following syntax.

// This is my comment {#myId}
var myName = "Rune Madsen"

This will add the #MyId id to the .pair output:

<div class="pair" id="myId">
  ...
</div>

Max lines

By default, a new code pair will be created when the parser encounters a comment. However, you can control this grouping. Here's an example that makes one code pair holding the comment and the first line of code. The second line of code will be in a code pair by itself.

// This is my name {!1}
var myName = "Rune Madsen"
var notMyName = "James Brown"

Using a ! followed by a number simply allows you to specify how many lines of code should be grouped in the code pair.

You can of course mix all these attributes in a single comment.

// This is my comment {!2 .myClass #myId .myOtherClass}

We found that we were using this attribute a lot to not include blank lines between pairs. So if the codesplitter encounters to pairs that both have comments, and the first ends with a blank line, it will automatically put that empty line in a pair by itself.

So this example...

// This is my name
var myName = "Rune Madsen"

// This is not my name
var notMyName = "James Brown"

Will have this output automatically...

<div class="codesplit">
  <div class="pairs">
    <div class="pair">
      <div class="comment"><p>This is my name</p></div>
      <div class="code"><pre><code>var myName = "Rune Madsen"
</code></pre></div>
    </div>
    <div class="pair no-comment">
      <div class="code"><pre><code>
</code></pre></div>
    </div>
    <div class="pair">
      <div class="comment"><p>This is not my name</p></div>
      <div class="code"><pre><code>var notMyName = "James Brown"
</code></pre></div>
    </div>
  </div>
</div>

Pick specific line from example

Sometimes you want to have a full example to e.g. run in the browser, but just show a few lines of code from the example. You can use the lines setting for this. This example shows only line 2,3,6,7,8 from the example.js file.

<pre class="codesplit" data-lines="2,3,6-8">
...
</pre>

You can use the same setting in the liquid tag.

{% codesplit example.js lines:'2,3,6-8' %}

Class

You can add a classname to the codesplit div via liquid like this:

{% codesplit example.js class:'myclass' %}