GithubHelp home page GithubHelp logo

isabella232 / material-components-site-generator Goto Github PK

View Code? Open in Web Editor NEW

This project forked from material-components/material-components-site-generator

0.0 0.0 0.0 2.58 MB

Generator of Material Components documentation sites.

License: Apache License 2.0

Shell 0.51% CSS 27.48% JavaScript 54.41% HTML 15.41% Ruby 2.18%

material-components-site-generator's Introduction

Material Components Docsite Generator

The docsite generator transforms Markdown files found in material-component repos, styles them, moves them around, rewrites links to match, and spits out https://material.io/components.

Prerequisites

  • Ruby
    • Using OS X's system Ruby is not recommended, because requires writing to system folders. rbenv is a better option. The required Ruby version is indicated in the Gemfile.
  • Xcode Command Line Tools (if on a mac)
  • Homebrew
  • Node.js v7+

Installation

gem install bundler
bundle install
brew update
brew install yarn
yarn install

Building the Site

The build script works with one or more component/documentation repos as input. A documentation repo must have an .mdc-docsite.yml file in its root, and it should define a basepath variable at the very least.

Running

$ scripts/build path/to/mdc/repo_1 [path/to/mdc/repo_2 ...]

will output a static site in the dist/ directory. In order to test the site, run a local web server with the dist/ directory as its root.

Change Watching

During development, it can be useful to have site builds triggered by changes to files. I've included very basic file watching functionality (not everything is watched) that can be enabled with the --watch option.

Build Environments

By default, scripts/build will build the site using a development configuration, which outputs source maps and tidied HTML.

Production builds should have BUILD_ENV=production precede the command to build optimized code.

Production site build (single platform)

If you're looking to build the site for a single platform, run the following:

BUILD_ENV=production scripts/build --apidocs /path/to/mdc/repo/root

Production site build (all platforms)

An incredibly slow and naive script has been written that performs a complete build of the site. It will clone the four repos into a folder called docs-src, and write the final output to dist/.

scripts/prod_build

Writing Documentation

The following describes how to write documentation for the material.io/components site.

Adding Configuration Metadata

Only markdown files containing Front Matter configuration metadata will be transformed into HTML by the site generation tool.

The configuration must appear at the top of the file, and be delimited with <!--docs: and -->. Example:

<!--docs:
title: "Page Title"
-->
Plain old Markdown
Sample Config – Component

Below is a sample metadata block taken from a component's README.md. Take notice of the casing and pluralization used for each field. The fields are described in more detail below.

<!--docs:
title: "Buttons" # name of component (not class), plural, title case
excerpt: "Material Design-styled buttons."
layout: detail # do not change
section: components # do not change
icon_id: text_field # described below
path: /catalog/text-fields/ # child of /catalog/, kebab-case, plural
-->
Sample Config – General Documentation (non-component)
<!--docs:
title: "How to Write Components"
excerpt: "A tutorial on how to write components."
layout: landing # do not change
section: docs # do not change
path: /docs/how-to-write-components/ # child of /docs/, kebab-case
-->

Configuration Fields

title

title is used as link text for the page in side navigation, as well as to populate the page's <title> element.

For component pages, this should be the name of the component (not the class), title-cased, and pluralized (where appropriate).

excerpt

excerpt is a short (one sentence) description of the page.

On component pages, it is used as the little snippet of text diplayed in the component listing.

It is used on all pages to populate <meta name="description"> elements.

section

Used to generate navigation. Should be components for component pages or docs otherwise.

layout

Determine the Jekyll layout to use. The available layouts can be found in this directory.

Component pages should use the detail layout. Documentation pages should use the landing layout.

icon_id

This is only applicable to files with section: component.

The ID of the icon associated with a component's readme. This is displayed on component and component listing pages.

An icon ID is the name of an SVG in this directory, without its extension. For example, to use bottom_navigation.svg, your metadata should read icon_id: bottom_navigation.

path

The destination path for the document's generated HTML.

Ending the path in a / will write out an index.html.

All links to other Markdown/files will be automatically rewritten to reflect their paths in the generated site.

Confused? Here's the rule: Write all your links so they'll work on GitHub. The site generator will do the rest.

api_doc_root

true if the site's documentation generator should be invoked on this directory. Currently this is only used on the iOS platform.

If omitted, this field defaults to false.

virtual_source_path

GitHub markdown files will sometimes link to a directory in the source tree that does not have an associated README, or its README is inappropriate for inclusion on the documentation site. virtual_source_path exists so that you can tell a the site generator to treat a file as if it exists somewhere in the source repo that it doesn't, so that other files can link to it in the generated site.

material-components-site-generator's People

Contributors

yeelan0319 avatar jmstriegel avatar ajsecord avatar willlarche avatar cketcham avatar jonathanzong avatar shepjgoogle avatar chriscox avatar kerrick avatar jverkoey 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.