From ea5f9100f225a2c1361c4edf70ace8518783eb1e Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Tue, 14 Mar 2023 12:52:21 +1100 Subject: [PATCH] Content formatting update (part 3) (#1967) --- angularjs.md | 15 +++++++++++---- applinks.md | 6 ++++++ bookshelf.md | 2 ++ browser-sync.md | 15 +++++++-------- browserify.md | 12 ++++++++++++ bundler.md | 1 + divshot.md | 9 +++++++++ do.md | 4 ++++ emacs.md | 1 + ember.md | 3 +++ express.md | 1 + google_analytics.md | 9 +++++++-- hledger.md | 12 ++++++++++-- ios-provision.md | 1 + koa.md | 8 ++++++++ kramdown.md | 8 ++++++++ less.md | 1 + linux.md | 1 + machinist.md | 9 +++++++++ middleman.md | 5 +++++ minitest.md | 1 + mocha.md | 1 + modernizr.md | 3 +++ nodejs-fs.md | 1 + nodejs-process.md | 1 + nodejs.md | 10 ++++++++-- pacman.md | 10 ++++++++-- perl-pie.md | 6 ++++++ plantuml.md | 8 ++++++++ pry.md | 8 ++++++++ qjs.md | 11 +++++++---- ractive.md | 11 ++++++++++- weinre.md | 1 + 33 files changed, 170 insertions(+), 25 deletions(-) diff --git a/angularjs.md b/angularjs.md index c0285555f..1e1389818 100644 --- a/angularjs.md +++ b/angularjs.md @@ -1,7 +1,18 @@ --- title: Angular.js category: JavaScript libraries +tags: [Archived] +archived: This describes an older version of Angular. --- + +### About +{: .-intro} + + * + * + +### ng-app + ```html     ``` @@ -88,7 +99,3 @@ In HTML will use `` to render your template `

Hello

` })    }); ``` -References: - - * https://github.com/angular/angular-seed - * https://angularjs.org/ diff --git a/applinks.md b/applinks.md index 432a9b4f8..29e4f1ce5 100644 --- a/applinks.md +++ b/applinks.md @@ -1,8 +1,14 @@ --- title: Applinks category: HTML +layout: 2017/sheet --- +### About + +- + +### Applinks diff --git a/bookshelf.md b/bookshelf.md index 2c9f2c499..1b70e5973 100644 --- a/bookshelf.md +++ b/bookshelf.md @@ -1,11 +1,13 @@ --- title: Bookshelf.js category: JavaScript libraries +layout: 2017/sheet --- Model ----- +### Model ```js Summary = bookshelf.Model.extend({ tableName: 'summaries', diff --git a/browser-sync.md b/browser-sync.md index 459a9084a..577b082d9 100644 --- a/browser-sync.md +++ b/browser-sync.md @@ -1,12 +1,15 @@ --- title: Browsersync category: JavaScript libraries +layout: 2017/sheet --- -``` -npm i -g browser-sync -``` -{:.terminal} +### About +{: .-intro} + +`npm i -g browser-sync` + +* [browsersync.io](https://browsersync.io) ### Start a server @@ -20,7 +23,3 @@ browser-sync start --server --files='**/*.html, **/*.css' --port=N --proxy="http://127.0.0.1:3000" ``` - -### Reference - -* [browsersync.io](http://browsersync.io) diff --git a/browserify.md b/browserify.md index 09385a91d..d82026682 100644 --- a/browserify.md +++ b/browserify.md @@ -1,8 +1,20 @@ --- title: Browserify category: JavaScript libraries +layout: 2017/sheet +tags: [Archived] +archived: Browserify has not been in active development. --- +### About +{: .-intro} + +Browserify is a bundler for JavaScript. + +- + +### Usage + browserify input.js -o output.js -t coffeeify diff --git a/bundler.md b/bundler.md index 0d33b00f3..96fefbe2f 100644 --- a/bundler.md +++ b/bundler.md @@ -1,6 +1,7 @@ --- title: Bundler category: Ruby +layout: 2017/sheet --- ### Commands diff --git a/divshot.md b/divshot.md index c1d65114a..62f1fe52c 100644 --- a/divshot.md +++ b/divshot.md @@ -1,9 +1,18 @@ --- title: Divshot +layout: 2017/sheet +tags: [Archived] +archived: Divshot is no longer in operation. --- ## Getting started +### About + +Divshot was a static hosting platform. + +- + ### Install divshot-cli ``` diff --git a/do.md b/do.md index 008fadb8f..6be106b77 100644 --- a/do.md +++ b/do.md @@ -1,8 +1,12 @@ --- title: Do gem category: Ruby libraries +layout: 2017/sheet --- +### About +{: .-intro} + * [DAddYE/do](https://github.com/DAddYE/do) ### Connection diff --git a/emacs.md b/emacs.md index 49bc15b7a..a821a048f 100644 --- a/emacs.md +++ b/emacs.md @@ -1,6 +1,7 @@ --- title: Emacs category: CLI +layout: 2017/sheet --- ### Movements diff --git a/ember.md b/ember.md index f8d077fbc..0aa531827 100644 --- a/ember.md +++ b/ember.md @@ -1,6 +1,9 @@ --- title: Ember.js category: JavaScript libraries +layout: 2017/sheet +tags: [Archived] +archived: This sheet describes an older version of Ember. --- {% raw %} diff --git a/express.md b/express.md index c35f10aa0..e46b6a050 100644 --- a/express.md +++ b/express.md @@ -1,6 +1,7 @@ --- title: Express.js category: JavaScript libraries +layoute: 2017/sheet --- ### Settings diff --git a/google_analytics.md b/google_analytics.md index 9351a076a..7f743f522 100644 --- a/google_analytics.md +++ b/google_analytics.md @@ -1,5 +1,8 @@ --- title: Google Analytics +layout: 2017/sheet +tags: [Archived] +archived: This sheet describes an older version of Google Analytics (UA). --- ### Pageview @@ -27,5 +30,7 @@ title: Google Analytics // Scope = 1 (visitor), 2 (session), 3 (page, default) -https://developers.google.com/analytics/devguides/collection/gajs/gaTrackingCustomVariables -https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide +### References + +- +- diff --git a/hledger.md b/hledger.md index 3927e8f19..5913bf3fc 100644 --- a/hledger.md +++ b/hledger.md @@ -1,18 +1,26 @@ --- title: Hledger category: Ledger +layout: 2017/sheet --- -## Reporting +### About +{: .-intro} + +- +- + +### Reporting ``` hledger bal {query} hledger reg {query} ``` -{:.large.terminal} ## Query +### Queries + Queries are used on all commands (`bal`, `reg`, etc). [(docs)](http://hledger.org/manual.html#queries) ``` diff --git a/ios-provision.md b/ios-provision.md index bab333751..ac610901a 100644 --- a/ios-provision.md +++ b/ios-provision.md @@ -1,5 +1,6 @@ --- title: iOS Provisioning Profiles +layout: 2017/sheet --- ### Types of profiles diff --git a/koa.md b/koa.md index fd9c87767..f5902e40d 100644 --- a/koa.md +++ b/koa.md @@ -1,8 +1,16 @@ --- title: Koa category: JavaScript libraries +layout: 2017/sheet --- +### About +{: .-intro} + +Koa is a web framework for Node.js. + +- + ### Reference ```js diff --git a/kramdown.md b/kramdown.md index 6b7652711..50c9c9671 100644 --- a/kramdown.md +++ b/kramdown.md @@ -1,8 +1,16 @@ --- title: Kramdown category: Markup +layout: 2017/sheet --- +### About +{: .-intro} + +Kramdown is a Markdown parser in Ruby. + +- + ### Configuration * `parse_block_html` - process kramdown syntax inside blocks diff --git a/less.md b/less.md index e9d722ae8..462eeeece 100644 --- a/less.md +++ b/less.md @@ -1,5 +1,6 @@ --- title: Less.js +layout: 2017/sheet --- ### Functions diff --git a/linux.md b/linux.md index f38b39849..61efb0080 100644 --- a/linux.md +++ b/linux.md @@ -1,5 +1,6 @@ --- title: Linux +layout: 2017/sheet --- ### Read/Write/Execute a file diff --git a/machinist.md b/machinist.md index 6d93b8150..4762fc932 100644 --- a/machinist.md +++ b/machinist.md @@ -1,8 +1,17 @@ --- title: Machinist category: Ruby libraries +layout: 2017/sheet +tags: [Archived] +archived: Machinist has not been in active development since 2013. --- +### About + +Machinist is a fixture management library for Ruby. + +- + ### Installing # Gemfile diff --git a/middleman.md b/middleman.md index 49102f5d9..1fce64f4e 100644 --- a/middleman.md +++ b/middleman.md @@ -1,8 +1,13 @@ --- title: Middleman 3 category: JavaScript libraries +layout: 2017/sheet +tags: [Archived] +archived: This guide is for Middleman v3. --- +### About + **NB:** This is for Middleman 3, not Middleman 4+. ### Compass config diff --git a/minitest.md b/minitest.md index f78201f16..d8dbb2268 100644 --- a/minitest.md +++ b/minitest.md @@ -1,6 +1,7 @@ --- title: Minitest category: Ruby +layout: 2017/sheet --- ### Usage diff --git a/mocha.md b/mocha.md index 1ea97aedd..e5fea23b1 100644 --- a/mocha.md +++ b/mocha.md @@ -1,6 +1,7 @@ --- title: Mocha.js category: JavaScript libraries +layout: 2017/sheet --- ### BDD diff --git a/modernizr.md b/modernizr.md index f8c8658ea..7943cf430 100644 --- a/modernizr.md +++ b/modernizr.md @@ -1,6 +1,9 @@ --- title: Modernizr category: JavaScript libraries +layout: 2017/sheet +tags: [Archived] +archived: Modernizr is no longer in active development. --- ### Script diff --git a/nodejs-fs.md b/nodejs-fs.md index 84d4f393c..56bc919fa 100644 --- a/nodejs-fs.md +++ b/nodejs-fs.md @@ -1,6 +1,7 @@ --- title: fs category: Node.js +layout: 2017/sheet --- ### Reading diff --git a/nodejs-process.md b/nodejs-process.md index af3f91a81..580e4165a 100644 --- a/nodejs-process.md +++ b/nodejs-process.md @@ -1,6 +1,7 @@ --- title: process category: Node.js +layout: 2017/sheet --- ### Streams diff --git a/nodejs.md b/nodejs.md index 165cbbb38..6124078be 100644 --- a/nodejs.md +++ b/nodejs.md @@ -1,9 +1,15 @@ --- title: Node.js API category: Node.js +layout: 2017/sheet --- -## Globals +### About +{: .-intro} + +- + +### Globals __filename __dirname @@ -21,7 +27,7 @@ category: Node.js } }); -## Snippets +### Snippets info = require('../package.json') info.version diff --git a/pacman.md b/pacman.md index 585b16ed6..432c85470 100644 --- a/pacman.md +++ b/pacman.md @@ -2,13 +2,19 @@ title: Pacman category: Linux updated: 2018-07-07 -intro: | - Pacman is the package manager for Arch linux and its derivatives. +layout: 2017/sheet --- ## Commands {: .-three-column} +### About +{: .-intro} + +Pacman is the package manager for Arch Linux and its derivatives. + +- + ### Common commands | Command | Description | diff --git a/perl-pie.md b/perl-pie.md index 541f82f9d..88032d273 100644 --- a/perl-pie.md +++ b/perl-pie.md @@ -1,8 +1,14 @@ --- title: Perl-pie category: Development +layout: 2017/sheet --- +### About +{: .-intro} + +Use `perl` to search and replace across many files. + ### Search and replace ```sh diff --git a/plantuml.md b/plantuml.md index d1f7ea624..cf432c219 100644 --- a/plantuml.md +++ b/plantuml.md @@ -1,7 +1,15 @@ --- title: PlantUML +layout: 2017/sheet --- +### About +{: .-intro} + +PlantUML is a markup language for creating diagrams. + +- + ### Format @startuml diff --git a/pry.md b/pry.md index 618a7a322..fcb0a3c6b 100644 --- a/pry.md +++ b/pry.md @@ -1,8 +1,16 @@ --- title: Pry category: Ruby libraries +layout: 2017/sheet --- +### About +{: .-intro} + +Pry is a runtime development console for Ruby. + +- + ### cd ``` diff --git a/qjs.md b/qjs.md index 379f067e9..8160d58a3 100644 --- a/qjs.md +++ b/qjs.md @@ -1,8 +1,15 @@ --- title: Q.js category: JavaScript libraries +layout: 2017/sheet --- +### About +{: .-intro} + +* +* + ### Creating promises (Q.promise) Q.promise (ok, fail) => @@ -69,7 +76,3 @@ category: JavaScript libraries .catch (e) -> console.error "Oh well", e - -### Reference - - * https://github.com/kriskowal/q/wiki/API-Reference diff --git a/ractive.md b/ractive.md index 61e40a358..ce2d320cd 100644 --- a/ractive.md +++ b/ractive.md @@ -1,10 +1,19 @@ --- title: Ractive.js category: JavaScript libraries -vim: ft=javascript +layout: 2017/sheet --- {% raw %} + +### About +{: .-intro} + +Ractive is a UI library for JavaScript. + +- +- + ### [Initialization](http://docs.ractivejs.org/latest/options) new Ractive({ diff --git a/weinre.md b/weinre.md index 5560615c0..5e4442c4a 100644 --- a/weinre.md +++ b/weinre.md @@ -5,6 +5,7 @@ layout: 2017/sheet tags: [Archived] intro: | [weinre](https://www.npmjs.com/package/weinre) is a remote Web inspector. Note that it has been deprecated since 2016. +archived: Weinre has been deprecated since 2016. --- ### Usage