All Projects → toolbuddy → Papogen

toolbuddy / Papogen

Licence: gpl-3.0
Use Sass/CSS + Pug + Node.js to generate beautiful static website.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Papogen

Portfolio one Page Template
Free responsive one page portfolio template
Stars: ✭ 106 (+186.49%)
Mutual labels:  sass, website, pug
Pug Starter
Simple pug (jade) starter [framework] enabling faster delivery of HTML & CSS projects to a private server and/or automatic deployment of GitHub pages.
Stars: ✭ 328 (+786.49%)
Mutual labels:  sass, website, pug
Pingy Cli
The Simple Frontend Build Tool. No Configuration, No Plugins.
Stars: ✭ 390 (+954.05%)
Mutual labels:  sass, website, pug
Docusaurus
Easy to maintain open source documentation websites.
Stars: ✭ 29,053 (+78421.62%)
Mutual labels:  documentation, website
Laravel Vue Boilerplate
🐘 A Laravel 6 SPA boilerplate with a users CRUD using Vue.js 2.6, GraphQL, Bootstrap 4, TypeScript, Sass, and Pug.
Stars: ✭ 472 (+1175.68%)
Mutual labels:  sass, pug
Typedoc
Documentation generator for TypeScript projects.
Stars: ✭ 5,377 (+14432.43%)
Mutual labels:  documentation, generator
Rabbitmq Website
RabbitMQ website and documentation guides
Stars: ✭ 433 (+1070.27%)
Mutual labels:  documentation, website
Website
🌐 The Babel documentation website
Stars: ✭ 631 (+1605.41%)
Mutual labels:  documentation, website
Pdoc
🐍 ➡️ 📜 Auto-generate API documentation for Python projects
Stars: ✭ 604 (+1532.43%)
Mutual labels:  documentation, generator
Easybook
Book publishing as easy as it should be (built with Symfony components)
Stars: ✭ 744 (+1910.81%)
Mutual labels:  documentation, generator
Gaintime
GainTime é um framework de HTML, CSS e JS para desenvolvimento de projetos responsivos, focado na simplicidade.
Stars: ✭ 19 (-48.65%)
Mutual labels:  sass, website
Uikit Ecommerce Template
E-commerce template built with UIKIt
Stars: ✭ 453 (+1124.32%)
Mutual labels:  website, pug
Ru.reactjs.org
React documentation website in Russian / Официальная русская версия сайта React
Stars: ✭ 444 (+1100%)
Mutual labels:  documentation, website
Vim Doge
(Do)cumentation (Ge)nerator 10+ languages 📚 Generate proper code documentation skeletons with a single keypress. ⚡️🔥
Stars: ✭ 533 (+1340.54%)
Mutual labels:  documentation, generator
Verb
HEADS UP! Verb is going though a major transition, we've completely refactored everything from the ground up. If you're interested, please see the dev branch.
Stars: ✭ 442 (+1094.59%)
Mutual labels:  documentation, generator
Reactjs.org
The React documentation website
Stars: ✭ 6,697 (+18000%)
Mutual labels:  documentation, website
Selft Resume Website
selft-resume-website,用react开发的简单的个人简历网站。适合react新手入门练习。
Stars: ✭ 7 (-81.08%)
Mutual labels:  sass, website
Gmdjs
Grid Material Design
Stars: ✭ 24 (-35.14%)
Mutual labels:  sass, pug
Docslikecode
Read stories, learn through practice, share with others, to treat docs as code.
Stars: ✭ 28 (-24.32%)
Mutual labels:  documentation, website
Assemble
Community
Stars: ✭ 3,995 (+10697.3%)
Mutual labels:  documentation, generator

papoGen

npm version npm downloads

Let's papoGen!

papoGen - Quickly generate webpages without any web development experience!


About

papoGen is a simple static webpage generator. You do not need any prior experience in web development to generate your webpage; the only prerequisite is a basic understanding of Markdown, JSON, and YAML. You can design your template or use any of our stock ones to generate pages of your own in little to no time at all. papoGen is developed by Toolbuddy. If you like papoGen or any of our other tools, please give us a star! If you have any problems or suggestions, please feel free to contact us or open an issue. We'd love to help you.


Usage

使用說明 - 中文詳細版本

  1. Installation
    » [sudo] npm install papogen -g
    
    • Manual
      • Explains each parameters that we currently support in detail.
      • See more in our example README.
  2. Generation
    » papogen -s test/ -o docs/ -t papoGen -m doc
    

Description

  • The papoGen document (i.e., DEMO page) is generated by papoGen!
    • Uses JSON files under the folder test/
      • In test/, there are several categories of scripts, which are in their own directory.
      • Additionally, there is a README.md in each respective directory, containing explanation for the format that we support.
    • View more:
  • Generated by script template
    • Use -h to list all supported scripts.
    • Use papogen -c <script>/<format_1>/<format_2>/... -o <output> to generate using our template files.
      • <script> is the blue one. (in -h output message)
      • <format> is the grey one. (in -h output message)
        • Version after 0.0.12 support several templates specified by using / to separate each format.
        • You can use json/all to get all currently supported copy to target the output directory.
  • Check our example/ to see more!

papoGen Commands

  • Command Format

     » papogen -s [--src] <src_path> \
             -o [--out] <out_path> \
             -t [--title] <title> \
             -g [--gen] <type> \
             -m [--model] <name> \
             --theme <theme> \
             -h [--help]
    
    Option Value Description
    -s [--src] URL The URL of the source files' folder
    -o [--out] URL The URL of the destination files' folder
    -t [--title] STRING The title you want to show on webpage
    -g [--gen] md / json / yaml The type of your source files
    -m [--model] md_doc* / doc / resume / papogen+ The model template you want to generate with
    --theme paper# / papogen+ The theme you want to render on your wabpage
    -h [--help] NONE Show papoGen helping manual
    • md_doc*: The only model supports Markdown.
    • paper#: Default theme
    • papogen+: The only theme supports papogen template. Notice that if you have already given the template as papogen (i.e., -m papogen), we will also set the theme as papogen (i.e., --theme papogen) automatically.

Format: Markdown (Recommended!)

  • Use Markdown format as configuration
  • Different from the following format
  • Generate from Markdown files
  • Support multiple Markdown files as input
  • Supporting model: md_doc
  • Example command
    » papogen -s test/md -o docs/md -g md -m md_doc -t Graph\ Theory
    

Format: JSON (Default)

  • Use JSON format as configuration.

  • Example command: See more in here.

    # Use directly (from source code)
    » node main.js -s test/ -o docs/ -t papoGen
    # By installation
    » papogen -s test/ -o docs/ -t papoGen -m doc
    
  • After specifying the src directory, PaperCSS will fetch all the JSON files under src and use the filename for each file as "tag" in output. the

  • papoGen will base on the input and generate your content (see more detail below)

    • Currently support: text (see the source directory: test/ as input, and destination directory: docs/ as output)

Format: YAML

  • Use YAML format as configuration.

  • Some formats are defined in JSON.

  • Example command:

    # Use directly (from source code)
    » node main.js -s test/ -o docs/ -g yaml -t papoGen
    # By installation
    » papogen -s test/ -o docs/ -t papoGen -m doc -g yaml
    
  • After specifying the src/ directory, PaperCSS will fetch all files in JSON format under src/ and use the filename for each as "tag" in output.

  • papoGen will base on the input and generate your content (see more detail below)

    • Currently support: text (see the source directory: test/ as input, and destination directory: docs/ as output)

DEMO


papoGen Wiki

For more information about papoGen, you can refer our wiki in this repository.

CHANGELOG

  • See here.

  • Screenshot

    Version Table of Vontent Main Page
    v0.2.2

Workflow


WIP

If you want to contribute to papoGen, use git clone with --recursive to clone the entire project (or use git submodule update to update your old version).

  • papoGen.css
    • Our new web UI - papoGen.css is creating now!
    • Introduce a new theme and template into papoGen.

Authors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].