Content formatting update (part 3) (#1967)

This commit is contained in:
Rico Sta. Cruz 2023-03-14 12:52:21 +11:00 committed by GitHub
parent c8d1d57d9f
commit ea5f9100f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
33 changed files with 170 additions and 25 deletions

View File

@ -1,7 +1,18 @@
--- ---
title: Angular.js title: Angular.js
category: JavaScript libraries category: JavaScript libraries
tags: [Archived]
archived: This describes an older version of Angular.
--- ---
### About
{: .-intro}
* <https://github.com/angular/angular-seed>
* <https://angularjs.org/>
### ng-app
```html ```html
   <html ng-app="nameApp">    <html ng-app="nameApp">
``` ```
@ -88,7 +99,3 @@ In HTML will use `<name></name>` to render your template `<h1>Hello</h1>`
}) })
   });    });
``` ```
References:
* https://github.com/angular/angular-seed
* https://angularjs.org/

View File

@ -1,8 +1,14 @@
--- ---
title: Applinks title: Applinks
category: HTML category: HTML
layout: 2017/sheet
--- ---
### About
- <http://applinks.org/>
### Applinks
<meta property="al:ios:url" content="applinks://docs" /> <meta property="al:ios:url" content="applinks://docs" />
<meta property="al:ios:app_store_id" content="12345" /> <meta property="al:ios:app_store_id" content="12345" />

View File

@ -1,11 +1,13 @@
--- ---
title: Bookshelf.js title: Bookshelf.js
category: JavaScript libraries category: JavaScript libraries
layout: 2017/sheet
--- ---
Model Model
----- -----
### Model
```js ```js
Summary = bookshelf.Model.extend({ Summary = bookshelf.Model.extend({
tableName: 'summaries', tableName: 'summaries',

View File

@ -1,12 +1,15 @@
--- ---
title: Browsersync title: Browsersync
category: JavaScript libraries category: JavaScript libraries
layout: 2017/sheet
--- ---
``` ### About
npm i -g browser-sync {: .-intro}
```
{:.terminal} `npm i -g browser-sync`
* [browsersync.io](https://browsersync.io)
### Start a server ### Start a server
@ -20,7 +23,3 @@ browser-sync start --server <path> --files='**/*.html, **/*.css'
--port=N --port=N
--proxy="http://127.0.0.1:3000" --proxy="http://127.0.0.1:3000"
``` ```
### Reference
* [browsersync.io](http://browsersync.io)

View File

@ -1,8 +1,20 @@
--- ---
title: Browserify title: Browserify
category: JavaScript libraries category: JavaScript libraries
layout: 2017/sheet
tags: [Archived]
archived: Browserify has not been in active development.
--- ---
### About
{: .-intro}
Browserify is a bundler for JavaScript.
- <https://browserify.org/>
### Usage
browserify input.js browserify input.js
-o output.js -o output.js
-t coffeeify -t coffeeify

View File

@ -1,6 +1,7 @@
--- ---
title: Bundler title: Bundler
category: Ruby category: Ruby
layout: 2017/sheet
--- ---
### Commands ### Commands

View File

@ -1,9 +1,18 @@
--- ---
title: Divshot title: Divshot
layout: 2017/sheet
tags: [Archived]
archived: Divshot is no longer in operation.
--- ---
## Getting started ## Getting started
### About
Divshot was a static hosting platform.
- <https://divshot.com/>
### Install divshot-cli ### Install divshot-cli
``` ```

4
do.md
View File

@ -1,8 +1,12 @@
--- ---
title: Do gem title: Do gem
category: Ruby libraries category: Ruby libraries
layout: 2017/sheet
--- ---
### About
{: .-intro}
* [DAddYE/do](https://github.com/DAddYE/do) * [DAddYE/do](https://github.com/DAddYE/do)
### Connection ### Connection

View File

@ -1,6 +1,7 @@
--- ---
title: Emacs title: Emacs
category: CLI category: CLI
layout: 2017/sheet
--- ---
### Movements ### Movements

View File

@ -1,6 +1,9 @@
--- ---
title: Ember.js title: Ember.js
category: JavaScript libraries category: JavaScript libraries
layout: 2017/sheet
tags: [Archived]
archived: This sheet describes an older version of Ember.
--- ---
{% raw %} {% raw %}

View File

@ -1,6 +1,7 @@
--- ---
title: Express.js title: Express.js
category: JavaScript libraries category: JavaScript libraries
layoute: 2017/sheet
--- ---
### Settings ### Settings

View File

@ -1,5 +1,8 @@
--- ---
title: Google Analytics title: Google Analytics
layout: 2017/sheet
tags: [Archived]
archived: This sheet describes an older version of Google Analytics (UA).
--- ---
### Pageview ### Pageview
@ -27,5 +30,7 @@ title: Google Analytics
// Scope = 1 (visitor), 2 (session), 3 (page, default) // Scope = 1 (visitor), 2 (session), 3 (page, default)
https://developers.google.com/analytics/devguides/collection/gajs/gaTrackingCustomVariables ### References
https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide
- <https://developers.google.com/analytics/devguides/collection/gajs/gaTrackingCustomVariables>
- <https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide>

View File

@ -1,18 +1,26 @@
--- ---
title: Hledger title: Hledger
category: Ledger category: Ledger
layout: 2017/sheet
--- ---
## Reporting ### About
{: .-intro}
- <https://hledger.org>
- <https://hledger.org/quickstart.html>
### Reporting
``` ```
hledger bal {query} hledger bal {query}
hledger reg {query} hledger reg {query}
``` ```
{:.large.terminal}
## Query ## Query
### Queries
Queries are used on all commands (`bal`, `reg`, etc). [(docs)](http://hledger.org/manual.html#queries) Queries are used on all commands (`bal`, `reg`, etc). [(docs)](http://hledger.org/manual.html#queries)
``` ```

View File

@ -1,5 +1,6 @@
--- ---
title: iOS Provisioning Profiles title: iOS Provisioning Profiles
layout: 2017/sheet
--- ---
### Types of profiles ### Types of profiles

8
koa.md
View File

@ -1,8 +1,16 @@
--- ---
title: Koa title: Koa
category: JavaScript libraries category: JavaScript libraries
layout: 2017/sheet
--- ---
### About
{: .-intro}
Koa is a web framework for Node.js.
- <https://koajs.com/>
### Reference ### Reference
```js ```js

View File

@ -1,8 +1,16 @@
--- ---
title: Kramdown title: Kramdown
category: Markup category: Markup
layout: 2017/sheet
--- ---
### About
{: .-intro}
Kramdown is a Markdown parser in Ruby.
- <https://kramdown.gettalong.org/>
### Configuration ### Configuration
* `parse_block_html` - process kramdown syntax inside blocks * `parse_block_html` - process kramdown syntax inside blocks

View File

@ -1,5 +1,6 @@
--- ---
title: Less.js title: Less.js
layout: 2017/sheet
--- ---
### Functions ### Functions

View File

@ -1,5 +1,6 @@
--- ---
title: Linux title: Linux
layout: 2017/sheet
--- ---
### Read/Write/Execute a file ### Read/Write/Execute a file

View File

@ -1,8 +1,17 @@
--- ---
title: Machinist title: Machinist
category: Ruby libraries 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.
- <https://github.com/notahat/machinist>
### Installing ### Installing
# Gemfile # Gemfile

View File

@ -1,8 +1,13 @@
--- ---
title: Middleman 3 title: Middleman 3
category: JavaScript libraries 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+. **NB:** This is for Middleman 3, not Middleman 4+.
### Compass config ### Compass config

View File

@ -1,6 +1,7 @@
--- ---
title: Minitest title: Minitest
category: Ruby category: Ruby
layout: 2017/sheet
--- ---
### Usage ### Usage

View File

@ -1,6 +1,7 @@
--- ---
title: Mocha.js title: Mocha.js
category: JavaScript libraries category: JavaScript libraries
layout: 2017/sheet
--- ---
### BDD ### BDD

View File

@ -1,6 +1,9 @@
--- ---
title: Modernizr title: Modernizr
category: JavaScript libraries category: JavaScript libraries
layout: 2017/sheet
tags: [Archived]
archived: Modernizr is no longer in active development.
--- ---
### Script ### Script

View File

@ -1,6 +1,7 @@
--- ---
title: fs title: fs
category: Node.js category: Node.js
layout: 2017/sheet
--- ---
### Reading ### Reading

View File

@ -1,6 +1,7 @@
--- ---
title: process title: process
category: Node.js category: Node.js
layout: 2017/sheet
--- ---
### Streams ### Streams

View File

@ -1,9 +1,15 @@
--- ---
title: Node.js API title: Node.js API
category: Node.js category: Node.js
layout: 2017/sheet
--- ---
## Globals ### About
{: .-intro}
- <https://nodejs.org>
### Globals
__filename __filename
__dirname __dirname
@ -21,7 +27,7 @@ category: Node.js
} }
}); });
## Snippets ### Snippets
info = require('../package.json') info = require('../package.json')
info.version info.version

View File

@ -2,13 +2,19 @@
title: Pacman title: Pacman
category: Linux category: Linux
updated: 2018-07-07 updated: 2018-07-07
intro: | layout: 2017/sheet
Pacman is the package manager for Arch linux and its derivatives.
--- ---
## Commands ## Commands
{: .-three-column} {: .-three-column}
### About
{: .-intro}
Pacman is the package manager for Arch Linux and its derivatives.
- <https://wiki.archlinux.org/title/pacman>
### Common commands ### Common commands
| Command | Description | | Command | Description |

View File

@ -1,8 +1,14 @@
--- ---
title: Perl-pie title: Perl-pie
category: Development category: Development
layout: 2017/sheet
--- ---
### About
{: .-intro}
Use `perl` to search and replace across many files.
### Search and replace ### Search and replace
```sh ```sh

View File

@ -1,7 +1,15 @@
--- ---
title: PlantUML title: PlantUML
layout: 2017/sheet
--- ---
### About
{: .-intro}
PlantUML is a markup language for creating diagrams.
- <https://plantuml.com/>
### Format ### Format
@startuml @startuml

8
pry.md
View File

@ -1,8 +1,16 @@
--- ---
title: Pry title: Pry
category: Ruby libraries category: Ruby libraries
layout: 2017/sheet
--- ---
### About
{: .-intro}
Pry is a runtime development console for Ruby.
- <https://github.com/pry/pry>
### cd ### cd
``` ```

11
qjs.md
View File

@ -1,8 +1,15 @@
--- ---
title: Q.js title: Q.js
category: JavaScript libraries category: JavaScript libraries
layout: 2017/sheet
--- ---
### About
{: .-intro}
* <https://github.com/kriskowal/q>
* <https://github.com/kriskowal/q/wiki/API-Reference>
### Creating promises (Q.promise) ### Creating promises (Q.promise)
Q.promise (ok, fail) => Q.promise (ok, fail) =>
@ -69,7 +76,3 @@ category: JavaScript libraries
.catch (e) -> .catch (e) ->
console.error "Oh well", e console.error "Oh well", e
### Reference
* https://github.com/kriskowal/q/wiki/API-Reference

View File

@ -1,10 +1,19 @@
--- ---
title: Ractive.js title: Ractive.js
category: JavaScript libraries category: JavaScript libraries
vim: ft=javascript layout: 2017/sheet
--- ---
{% raw %} {% raw %}
### About
{: .-intro}
Ractive is a UI library for JavaScript.
- <https://ractive.js.org/>
- <https://ractivejs.org/>
### [Initialization](http://docs.ractivejs.org/latest/options) ### [Initialization](http://docs.ractivejs.org/latest/options)
new Ractive({ new Ractive({

View File

@ -5,6 +5,7 @@ layout: 2017/sheet
tags: [Archived] tags: [Archived]
intro: | intro: |
[weinre](https://www.npmjs.com/package/weinre) is a remote Web inspector. Note that it has been deprecated since 2016. [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 ### Usage