Official website and documentation for Less/Less.js
Assemble and Grunt are used to build the docs. To get started:
- Download the docs
- In the root of the project, run
npm install
- Run the
grunt
command to build the docs
If all worked properly, you're ready to begin contributing to the docs!
All documentation content can be found in the ./content
directory. Please read the contributing section below if you wish to add documentation.
- Clean up and organize all of the documentation in the content directory, which means
- Consistent naming conventions for files, consistent coding styles in documents
- Organize information and favor individual files for sections of content, rather than long documents
- Last, a new theme.
Please help us make the documentation consistent, readable, and maintainable by conforming to these guidelines when contributing:
The name of the project is Less. Anywhere in the docs, Less means both the language and its official, reference implementation. The less.js form is normally to be used only to specify either of:
- the browser script file name
- the particular GitHub repository (where most of the development takes place)
- "Less language", "Less library", "Less API", "Less plugin", "Using Less" etc.
- "Fork less/less.js repository" (synonyms: "Less Repository", "Main Repository" etc.)
- "Make sure to include your stylesheets before the less.js script"
- Nouns (man, bus, book)
- Adjectives (angry, lovely, small)
- Verbs (run, eat, sleep)
- Adverbs (slowly, quickly, quietly)
- Pronouns (he, she, it)
- Subordinating conjunctions (as, because, that)
- Articles: a, an, the
- Coordinating Conjunctions: and, but, or, for, nor, etc.
- Prepositions: on, at, to, from, by, etc.
- Use
#
for titles, not underlines. Underlines are not semantic, aren't as flexible, aren't always highlighted properly in code highlighters - Always add a space between the
#
and the heading - Wrap inline code with a single backtick,
- wrap blocks of code with three backticks (code fences).
- With code blocks, always use the correct language after the first code fence. Although GitHub does not highlight Less, our documentation is more likely to show up in GitHub's and Google's search results when the correct language is used. Examples: please use
```less
for Less, and```css
for CSS.
- Two spaces for indentation, never tabs, and always use proper indentation
- Multiple-line formatting (one property and value per line)
- For multiple, comma-separated selectors, place each selector on its own line
- Double quotes only, never single quotes
- Always put a space after a property's colon (e.g.,
display: block;
and notdisplay:block;
) - End all lines with a semi-colon
- Attribute selectors, like
input[type="text"]
should always wrap the attribute's value in double quotes. This is important to do in your own code as well for consistency and safety (see this blog post on unquoted attribute values that can lead to XSS attacks) - When using HTML in your examples, use tags and elements appropriate for an HTML5 doctype (e.g., self-closing tags with no trailing slash)
- Separate words in variable and mixin names using dash (e.g.,
@long-variable-name
or.my-favourite-mixin
)
Examples:
Good
body {
padding-top: 80px;
font-size: 12px;
}
Bad
body {
padding-top: 80px;
font-size: 12px;
}
Bad
body { padding-top: 80px; font-size: 12px }
Also, please ensure that all documentation files should have globally-unique names, regardless of where they are located in the repository. This makes it easier to use conveniences like file globbing, and it's good practice anyway.
- If you would like to request a feature, suggest an improvement, or report a bug, please submit an Issue.
- Feature requests are more likely to get attention if you include a clearly described use case.
- If you wish to submit a pull request, please read this first.
The documentation site is generated using Assemble. Please visit that project to report bugs, or to learn more about usage and customization.
Update the project with the most recent metadata from the Less.js project, such as current version number, description, and so on, and then run Grunt with the following command:
node data/utils/pkg && grunt
Copyright (c) 2017, Alexis Sellier, Less Core Team, Contributors Documentation released under Creative Commons. Documentation source code released under the MIT License. Less source code is released under the Apache 2 License.