From 9132859757c73b0c00f97b2a72db7feff9067c3c Mon Sep 17 00:00:00 2001 From: Machiste Quintana Date: Sat, 24 Jan 2015 09:49:53 -0500 Subject: [PATCH] :memo: LESS -> Less --- docs/converting-a-text-mate-bundle.md | 2 +- docs/converting-a-text-mate-theme.md | 4 ++-- docs/creating-a-package.md | 6 +++--- docs/creating-a-theme.md | 8 ++++---- docs/customizing-atom.md | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/converting-a-text-mate-bundle.md b/docs/converting-a-text-mate-bundle.md index f8cd14f96..de410c31c 100644 --- a/docs/converting-a-text-mate-bundle.md +++ b/docs/converting-a-text-mate-bundle.md @@ -45,7 +45,7 @@ the editor to see it in action! [atomio]: https://atom.io [CSS]: http://en.wikipedia.org/wiki/Cascading_Style_Sheets -[LESS]: http://lesscss.org +[Less]: http://lesscss.org [plist]: http://en.wikipedia.org/wiki/Property_list [R]: http://en.wikipedia.org/wiki/R_(programming_language) [TextMate]: http://macromates.com diff --git a/docs/converting-a-text-mate-theme.md b/docs/converting-a-text-mate-theme.md index 8ddb429c4..37199d8f3 100644 --- a/docs/converting-a-text-mate-theme.md +++ b/docs/converting-a-text-mate-theme.md @@ -6,7 +6,7 @@ theme. ### Differences TextMate themes use [plist][plist] files while Atom themes use [CSS][CSS] or -[LESS][LESS] to style the UI and syntax in the editor. +[Less][Less] to style the UI and syntax in the editor. The utility that converts the theme first parses the theme's plist file and then creates comparable CSS rules and properties that will style Atom similarly. @@ -62,7 +62,7 @@ __Syntax Theme__ dropdown menu to enable your new theme. [atomio]: https://atom.io [CSS]: http://en.wikipedia.org/wiki/Cascading_Style_Sheets -[LESS]: http://lesscss.org +[Less]: http://lesscss.org [plist]: http://en.wikipedia.org/wiki/Property_list [TextMate]: http://macromates.com [TextMateThemes]: http://wiki.macromates.com/Themes/UserSubmittedThemes diff --git a/docs/creating-a-package.md b/docs/creating-a-package.md index bfa88c9b9..efc369dad 100644 --- a/docs/creating-a-package.md +++ b/docs/creating-a-package.md @@ -123,8 +123,8 @@ like you. Style sheets for your package should be placed in the _styles_ directory. Any style sheets in this directory will be loaded and attached to the DOM when -your package is activated. Style sheets can be written as CSS or [LESS], but -LESS is recommended. +your package is activated. Style sheets can be written as CSS or [Less], but +Less is recommended. Ideally, you won't need much in the way of styling. We've provided a standard set of components which define both the colors and UI elements for any package @@ -418,7 +418,7 @@ all the other available commands. [underscore]: http://underscorejs.org/ [jasmine]: http://jasmine.github.io [cson]: https://github.com/atom/season -[LESS]: http://lesscss.org +[Less]: http://lesscss.org [ui-variables]: https://github.com/atom/atom-dark-ui/blob/master/styles/ui-variables.less [first-package]: your-first-package.html [convert-bundle]: converting-a-text-mate-bundle.html diff --git a/docs/creating-a-theme.md b/docs/creating-a-theme.md index 260f6d060..9e1a64cce 100644 --- a/docs/creating-a-theme.md +++ b/docs/creating-a-theme.md @@ -1,7 +1,7 @@ # Creating a Theme -Atom's interface is rendered using HTML, and it's styled via [LESS] which is a -superset of CSS. Don't worry if you haven't heard of LESS before; it's just like +Atom's interface is rendered using HTML, and it's styled via [Less] which is a +superset of CSS. Don't worry if you haven't heard of Less before; it's just like CSS, but with a few handy extensions. Atom supports two types of themes: _UI_ and _syntax_. UI themes style @@ -17,7 +17,7 @@ section on the left hand side. Themes are pretty straightforward but it's still helpful to be familiar with a few things before starting: -* LESS is a superset of CSS, but it has some really handy features like +* Less is a superset of CSS, but it has some really handy features like variables. If you aren't familiar with its syntax, take a few minutes to [familiarize yourself][less-tutorial]. * You may also want to review the concept of a _[package.json]_, too. This file @@ -131,7 +131,7 @@ _styleguide_, or use the shortcut `cmd-ctrl-shift-g`. ![styleguide-img] [atomio]: http://atom.io/packages -[LESS]: http://lesscss.org/ +[Less]: http://lesscss.org/ [git]: http://git-scm.com/ [atom]: https://atom.io/ [package.json]: ./creating-a-package.html#package-json diff --git a/docs/customizing-atom.md b/docs/customizing-atom.md index 047da48cf..b7c11c521 100644 --- a/docs/customizing-atom.md +++ b/docs/customizing-atom.md @@ -174,12 +174,12 @@ atom-text-editor.is-focused .cursor { } ``` -Unfamiliar with LESS? Read more about it [here][LESS]. +Unfamiliar with Less? Read more about it [here][Less]. This file can also be named _styles.css_ and contain CSS. [creating-a-package]: creating-a-package.md [create-theme]: creating-a-theme.md -[LESS]: http://www.lesscss.org +[Less]: http://www.lesscss.org [CSON]: https://github.com/atom/season [CoffeeScript]: http://coffeescript.org/