#literate-programming #markdown #plugin

app yarner-fold-code

A Yarner plugin that puts all code blocks into collapsed <details> tags

2 releases

0.2.2 Mar 9, 2021
0.2.1 Mar 4, 2021

#7 in #literate-programming

26 downloads per month

MIT license

8KB
111 lines

yarner-fold-code

Test status GitHub Crate MIT license

A Yarner plugin that puts all code blocks into collapsed <details> tags.

Example:

All code blocks are collapsed in details tags.

Main code block
//- Main code block
fn main() {
    println!("Hello world!");
}

Installation

Binaries

  1. Download the latest binaries for your platform
  2. Unzip somewhere
  3. Add the parent directory of the executable to your PATH environmental variable

Using cargo

> cargo install yarner-fold-code

Usage

Add a section plugin.fold-code to your Yarner.toml:

[plugin.fold-code]

Options

The plugin allows for different options, which are all optional:

[plugin.fold-code]
min-lines = "10"
languages = ["java", "rust"]
ignore-languages = ["c", "python"]
Option Details Default
min-lines Do not fold code blocks shorter than that 0
languages Only fold code blocks in these languages (if present) none
ignore-languages Do not fold code blocks in these languages none

Dependencies

~4–5.5MB
~106K SLoC