Giter Club home page Giter Club logo

eleventy-plugin-fsharp's Introduction

eleventy-plugin-fsharp

This plugin add support for F# literate files to Eleventy.

Syntax

An literate F# literate file is a file ending with .fsx.

(**
---
layout: standard
title: Introduction
---
**)

(**
# First-level heading

Some more documentation using `Markdown`.
*)

// This F# code will be included in the output
let helloWorld() = printfn "Hello world!"

(*** hide ***)

// This F# code will not be included in the output
let add x y = x + y

The F# script files is processed as follows:

  • It starts with a YAML front matter block delimieted by (** and **), which is used to set the metadata for the page.
  • A multi-line comment starting with (** and ending with *) is considered a Markdown block.
  • A single line comment starting with (*** and ending with ***) is considered as a command.

Commands

(*** hide ***)

Hide the subsequent snippet from the output up to the next command show command or markdown block.

(*** hide ***)

// This code is hidden
let a = 1

(*** show ***)
// This code is shown
let b = 2

(*** hide ***)
// This code is hidden
let c = 3

(**
This is a markdown block
*)

// This code is shown
let d = 4

Limitations

Important

Only nunjucks templates are supported for now. Can be revisited to add support for other template engines if there is demand.

Syntax highlighting is using @fec/eleventy-plugin-remark internally. So you are encourage, to use the same plugin to add syntax highlighting to your markdown files.

// Store the remark options in a variable so you garantee
// that the same options are used for both plugins
const remarkOptions = {
    enableRehype: false,
    plugins: [
        // ...
    ],
};

module.exports = function (eleventyConfig) {
    // Set remark as your default markdown engine
    eleventyConfig.addPlugin(eleventyRemark, remarkOptions);
    // Add the fsharp plugin
    eleventyConfig.addPlugin(eleventyFsharpLiterate, {
        eleventyRemarkOptions: remarkOptions,
    });

    return {
        dir: {
            input: ".",
            includes: "_includes",
            data: "_data",
            output: "_site",
        },
        dataTemplateEngine: "njk",
        htmlTemplateEngine: "njk",
        markdownTemplateEngine: "njk",
    };
};

eleventy-plugin-fsharp's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.