Giter Site home page Giter Site logo

dogbane-generator's Introduction

Cipolla

Module with pluggable themes to generate html from the API Blueprint JSON.

Usage

var cipolla = require('cipolla');

var generator = new cipolla(require('cipolla-test-theme'));

generator.render(blueprintJSON, function (err, html) {

});

generator.renderToFile(blueprintJSON, 'path/to/file.html', function (err) {

});

Constructor Parameters

  • theme - theme plugin, needs the following interface
    • theme(options) - theme constructor
    • render(blueprint, callback) generates the html, the callback has the signature function(err, html)
      • err any error during render
      • html compiled html
    • renderToFile(blueprint, pathToFile, callback) generates the html and saves it to a path, the callback has the signature function(err)
      • err any error during render to file
  • themeOptions - optional options object to pass to the theme constructor

Theme interface

When plugin a theme into cipolla you should implement this interface:

  • Constructor(options) constructor for the theme
  • setOptions(options) function that set the options passed to the theme from cipolla
  • render(blueprint, callback) function that renders templates and returns an html on callback, callback parameters
    • err if there's any error present
    • html render html from the template
  • renderToFile(blueprint,pathToFile, callback) function that renders template directly to a file, callback parameters
    • err if there's any error

dogbane-generator's People

Contributors

osukaa avatar

Stargazers

 avatar

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.