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

docsify-betterembed

v1.1.1

Published

A docsify.js plugin to embed selective areas from another markdown file.

Downloads

156

Readme

Better Embed

A docsify.js plugin to embed selective areas from another markdown file.

Installation

How to install this plugin.

Production

For production, please use the numbered version to prevent breaking changes in production.

<script src="https://unpkg.com/[email protected]/dist/betterEmbed.min.js"></script>

Development

If you are developing on a doc, you can use the latest. Make sure you switch it to production later, or the production one right away.

<script src="https://unpkg.com/docsify-betterembed@latest/dist/betterEmbed.min.js"></script>

Usage

[!NOTE] Sorry for not providing a demo, but I thought this is a very self explanatory setup. But I am using this activly in another projects.

Basic instructions

  1. Surround the part you want to embed in the following comment:

    <!-- embed:start:exampleName -->
    
    YOUR CONTENT HERE
    
    <!-- embed:end:exampleName -->

[!IMPORTANT] Make sure you respect the spaces between the comments and your content. It can mess with the html (specifically tables), if they are left out.

  1. Embed the content like this:

    [Some Name](path/to/markdown/file/with/embed.md#exampleName ':include')

--> The link will then be replaced with the content. If it doesn't the selector, it will embed the whole page. Aka, you might have done something wrong.

Tips

  • Setup 2 just converts to a different text, you can also use this to keep the link for Markdown, vanilla-feeling:

    <!-- embedImport:start:exampleName -->
    [Some Name](path/to/markdown/file/with/embed.md ':include')
    <!-- embedImport:end:exampleName -->
  • Because the selector is what decides the beginning and the end, you can nest and overlay the embed selections, however you like it.

    <!-- embed:start:expl3 -->
    <!-- embed:start:expl1 -->
    
    Very original stuff.
    
    <!-- embed:start:expl2 -->
    
    Oh, So much content
    
    <!-- embed:end:expl1 -->
    
    uhm.. hows your day?
    
    <!-- embed:end:expl2 -->
    <!-- embed:end:expl3 -->

Contributing

I'm always happy, if someone has improvements to this little plugin. If you want to help, anything goes, but preferred is what is on the roadmap below or maybe discuss it as a GitHub issue first. ^^

Roadmap

Nothing much here, but I'm planning to add the following features at some point:

  • [ ] Support for docsify-mustache so Docsify can have proper templating.
  • [ ] Being able to use header as a selector and not use comments to mark the start and end.
  • [ ] Offset header levels to either fit the current layout, or being able to select it.

License

This repo is using the MIT license.

Credit

Thanks to the docsify.js team to make writing plugins so simple. I usually don't front end, but this was a breeze to get working.