GithubHelp home page GithubHelp logo

marioariasc / kotlin-web-site Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jetbrains/kotlin-web-site

0.0 2.0 0.0 9.98 MB

The Kotlin Programming Language Website

Home Page: http://kotlinlang.org/

License: Apache License 2.0

Ruby 2.72% HTML 6.55% CSS 36.51% XSLT 0.61% JavaScript 53.34% Kotlin 0.27%

kotlin-web-site's Introduction

This is the source for the Kotlin Web Site

Filing Bugs

We use YouTrack for bug reports and suggestions. Click here to report an issue.

Installation

Site is based on Jekyll, so you will need ruby (>= 1.9.3) and rubygems to get it working.

Run sh ./INSTALL.sh to install.

PDF building

To build PDF you will also need wkhtmltopdf:

  • Mac OS. 0.12.1 testing build 10.6+ (Carbon).
  • Windows. 0.12.1 testing build Windows (MSVC 2013).
  • Linux. Stable 0.12.0.

Troubleshooting

Working with site

Rake tasks

Site uses rake for build management. To list available commands, run rake from project folder with no arguments.

  • rake build generates site in the _site fodler. Use dest parameter to specify another location: rake build dest=/path.
  • rake preview runs built-in development server that will allow you to preview what the generated site will look like in your browser locally. Changed files are rebuilt automatically. Host address and port can be changed by passing the following parameters: rake preview host=172.20.209.23 port=3000
  • rake build_pdf builds a PDF from documentation pages and stores it in the default folder. To change location, specify file: rake build_pdf file=book.pdf.

Data

All data is stored in the *.yml files in folder _data:

  • _nav.yml site navigation and PDF building.
  • releases.yml info about releases.
  • videos.yml data for the Videos page. The content property is used to create categories. It contains a list of videos or other categories. Maximum tree depth level is 3.
  • events.yml event data.

Templates

Jekyll uses Liquid template engine. You can use variables, loops, conditions and filters to define content of pages. More information can be found here and here.

Variables

The list of global variables accessible from each page can be found here. To access the folder data from _data, use the following syntax: {{ site.data.%filename%.%key% }}. E.g.:

  • {{ site.data._nav.main.try.url }} - gets address for Try Kotlin page.
  • {{ site.data.releases.latest.version }} - gets the latest Kotlin version.

Page metadata

Every page can have an unlimited number of metadata fields. More information here. The most important of them are the page template (e.g. layout: reference) and its type (e.g. type: tutorial). category and title fields are added for future development.

Writing an content

Markup

Kramdown with some additions (like GitHub fenced code blocks) is used as markdown parser. See the complete syntax reference at Kramdown site.

Markdown cheatsheet

In progress, see this reference instead.

Specifying page element attributes

With Kramdown you can assign HTML attributes to page elements via {:%param%}. E.g.:

  • *important text*{:.important} - produces <em class="important">important text</em>
  • *important text*{:#id} - produces <em id="id">important text</em>

For block elements this instruction must be specified on the line following element definition:

This is a paragraph
{:.important}

This is a paragraph

More information about attributes can be found here.

Custom element styles

Inline elements

  • {:.keyword} highlights a keyword.
  • {:.error} highlights an error.
  • {:.warning} highlights a warning.

Tables

  • {:.wide} stretches a table to occupy the entire width of a page.
  • {:.zebra} interleaves table rows.

E.g.:

| Expression | Translated to |
|------------|---------------|
| `a++` | `a.inc()` + see below |
| `a--` | `a.dec()` + see below |
{:.wide.zebra}

Quotation blocks

They're used in a slightly other manner that they were originally designed for: as universal block container elements.

  • {:.note} highlights a note block.

E.g.:

> **`inc()/dec()` shouldn't mutate the receiver object**.
>
> By "changing the receiver" we mean `the receiver-variable`, not the receiver object.
{:.note}

kotlin-web-site's People

Watchers

 avatar  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.