Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

snakemake-plugin-jekyll

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

snakemake-plugin-jekyll

  • 0.0.11
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Snakemake Plugin Jekyll Docs Template

assets/img/snakemake-logo.png

This is a Snakemake jekyll template intended for plugin authors to easily deploy documentation alongside their repositories. Snakemake currently supports the following plugin types:

  • Executor Plugins

Usage

Using the theme is easy - just add it as a remote_theme to your config yaml. We will be providing an example site (to use as a template) soon!

# Theme for docs
plugins:
  - jekyll-remote-theme

remote_theme: snakemake/snakemake-plugin-docs-jekyll

And add

gem "jekyll-remote-theme"

to your Gemfile.

Add a Page

And then you can add any pages with the following front end matter (header) to use the documentation template.

---
title: plugin
layout: docs
permalink: /cmake/
---

Add a Sidebar

To add a sidebar to your pages, create a file under _data/menus/ that is named according to your sidebar, e.g., _data/menus/mysidebar.yaml for a sidebar named mysidebar. The file should be a flat list of names and urls:

- title: My Page
  url: "mypage"
- title: Root of Site
  url: ""

And then you can add this to the front end matter of pages where you want it to appear:

---
title: plugin
layout: docs
sidebar: mysidebar
permalink: /pagename/
---

Development

If you want to use the gem, it is built during CI, and release is currently done from the command line:

$ /bin/bash script/release.sh

But this isn't required since we can use jekyll-remote-theme and use it directly from GitHub. If you do release, you should bump the version in snakemake-plugin-docs-jekyll.gemspec and be on the main branch.

License

HPCIC DevTools is distributed under the terms of the MIT license. All new contributions must be made under this license.

See LICENSE, COPYRIGHT, and NOTICE for details.

SPDX-License-Identifier: (MIT)

LLNL-CODE- 842614

FAQs

Package last updated on 15 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc