Skip to content

Commit

Permalink
Content formatting update (part 3) (#1967)
Browse files Browse the repository at this point in the history
  • Loading branch information
rstacruz committed Mar 14, 2023
1 parent c8d1d57 commit ea5f910
Show file tree
Hide file tree
Showing 33 changed files with 170 additions and 25 deletions.
15 changes: 11 additions & 4 deletions angularjs.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
---
title: Angular.js
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 ng-app="nameApp">
```
Expand Down Expand Up @@ -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/
6 changes: 6 additions & 0 deletions applinks.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
---
title: Applinks
category: HTML
layout: 2017/sheet
---

### About

- <http://applinks.org/>

### Applinks

<meta property="al:ios:url" content="applinks://docs" />
<meta property="al:ios:app_store_id" content="12345" />
Expand Down
2 changes: 2 additions & 0 deletions bookshelf.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
---
title: Bookshelf.js
category: JavaScript libraries
layout: 2017/sheet
---

Model
-----

### Model
```js
Summary = bookshelf.Model.extend({
tableName: 'summaries',
Expand Down
15 changes: 7 additions & 8 deletions browser-sync.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -20,7 +23,3 @@ browser-sync start --server <path> --files='**/*.html, **/*.css'
--port=N
--proxy="http://127.0.0.1:3000"
```

### Reference

* [browsersync.io](http://browsersync.io)
12 changes: 12 additions & 0 deletions browserify.md
Original file line number Diff line number Diff line change
@@ -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.

- <https://browserify.org/>

### Usage

browserify input.js
-o output.js
-t coffeeify
Expand Down
1 change: 1 addition & 0 deletions bundler.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Bundler
category: Ruby
layout: 2017/sheet
---

### Commands
Expand Down
9 changes: 9 additions & 0 deletions divshot.md
Original file line number Diff line number Diff line change
@@ -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.

- <https://divshot.com/>

### Install divshot-cli

```
Expand Down
4 changes: 4 additions & 0 deletions do.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
---
title: Do gem
category: Ruby libraries
layout: 2017/sheet
---

### About
{: .-intro}

* [DAddYE/do](https://github.com/DAddYE/do)

### Connection
Expand Down
1 change: 1 addition & 0 deletions emacs.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Emacs
category: CLI
layout: 2017/sheet
---

### Movements
Expand Down
3 changes: 3 additions & 0 deletions ember.md
Original file line number Diff line number Diff line change
@@ -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 %}
Expand Down
1 change: 1 addition & 0 deletions express.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Express.js
category: JavaScript libraries
layoute: 2017/sheet
---

### Settings
Expand Down
9 changes: 7 additions & 2 deletions google_analytics.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
---
title: Google Analytics
layout: 2017/sheet
tags: [Archived]
archived: This sheet describes an older version of Google Analytics (UA).
---

### Pageview
Expand Down Expand Up @@ -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

- <https://developers.google.com/analytics/devguides/collection/gajs/gaTrackingCustomVariables>
- <https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide>
12 changes: 10 additions & 2 deletions hledger.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
---
title: Hledger
category: Ledger
layout: 2017/sheet
---

## Reporting
### About
{: .-intro}

- <https://hledger.org>
- <https://hledger.org/quickstart.html>

### 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)

```
Expand Down
1 change: 1 addition & 0 deletions ios-provision.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: iOS Provisioning Profiles
layout: 2017/sheet
---

### Types of profiles
Expand Down
8 changes: 8 additions & 0 deletions koa.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
---
title: Koa
category: JavaScript libraries
layout: 2017/sheet
---

### About
{: .-intro}

Koa is a web framework for Node.js.

- <https://koajs.com/>

### Reference

```js
Expand Down
8 changes: 8 additions & 0 deletions kramdown.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
---
title: Kramdown
category: Markup
layout: 2017/sheet
---

### About
{: .-intro}

Kramdown is a Markdown parser in Ruby.

- <https://kramdown.gettalong.org/>

### Configuration

* `parse_block_html` - process kramdown syntax inside blocks
Expand Down
1 change: 1 addition & 0 deletions less.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Less.js
layout: 2017/sheet
---

### Functions
Expand Down
1 change: 1 addition & 0 deletions linux.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Linux
layout: 2017/sheet
---

### Read/Write/Execute a file
Expand Down
9 changes: 9 additions & 0 deletions machinist.md
Original file line number Diff line number Diff line change
@@ -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.

- <https://github.com/notahat/machinist>

### Installing

# Gemfile
Expand Down
5 changes: 5 additions & 0 deletions middleman.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions minitest.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Minitest
category: Ruby
layout: 2017/sheet
---

### Usage
Expand Down
1 change: 1 addition & 0 deletions mocha.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Mocha.js
category: JavaScript libraries
layout: 2017/sheet
---

### BDD
Expand Down
3 changes: 3 additions & 0 deletions modernizr.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
title: Modernizr
category: JavaScript libraries
layout: 2017/sheet
tags: [Archived]
archived: Modernizr is no longer in active development.
---

### Script
Expand Down
1 change: 1 addition & 0 deletions nodejs-fs.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: fs
category: Node.js
layout: 2017/sheet
---

### Reading
Expand Down
1 change: 1 addition & 0 deletions nodejs-process.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: process
category: Node.js
layout: 2017/sheet
---

### Streams
Expand Down
10 changes: 8 additions & 2 deletions nodejs.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
---
title: Node.js API
category: Node.js
layout: 2017/sheet
---

## Globals
### About
{: .-intro}

- <https://nodejs.org>

### Globals

__filename
__dirname
Expand All @@ -21,7 +27,7 @@ category: Node.js
}
});

## Snippets
### Snippets

info = require('../package.json')
info.version
Expand Down
10 changes: 8 additions & 2 deletions pacman.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

- <https://wiki.archlinux.org/title/pacman>

### Common commands

| Command | Description |
Expand Down

0 comments on commit ea5f910

Please sign in to comment.