Skip to content

Commit

Permalink
fix(docs): resolving broken links in new docs site #1192
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Franzke committed May 2, 2020
1 parent e164127 commit b4eb12e
Show file tree
Hide file tree
Showing 25 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Refer to the [core usage guidelines](https://github.com/pattern-lab/patternlab-n

### Installation

As of Pattern Lab Node 3.0.0, installation of [Editions](http://patternlab.io/docs/advanced-ecosystem-overview.html) is accomplished via the command line interface.
As of Pattern Lab Node 3.0.0, installation of [Editions](https://patternlab.io/docs/overview-of-pattern-lab's-ecosystem/) is accomplished via the command line interface.

The below assumes a new directory and project is required. This is likely what you want to do if starting from scratch. You could also run this within an existing project. The CLI will ask you for the installation location.

Expand All @@ -48,7 +48,7 @@ The below assumes a new directory and project is required. This is likely what y

![Pattern Lab Ecosystem](http://patternlab.io/assets/pattern-lab-2-image_18-large-opt.png)

Core, and Editions, are part of the [Pattern Lab Ecosystem](http://patternlab.io/docs/advanced-ecosystem-overview.html). With this architecture, we encourage people to write and maintain their own Editions, Starterkits, and even PatternEngines.
Core, and Editions, are part of the [Pattern Lab Ecosystem](https://patternlab.io/docs/overview-of-pattern-lab's-ecosystem/). With this architecture, we encourage people to write and maintain their own Editions, Starterkits, and even PatternEngines.

## Changelog

Expand Down
6 changes: 3 additions & 3 deletions packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# Pattern Lab Node Core

This is the core API and orchestrator of the [Pattern Lab ecosystem](http://patternlab.io/docs/advanced-ecosystem-overview.html).
This is the core API and orchestrator of the [Pattern Lab ecosystem](https://patternlab.io/docs/overview-of-pattern-lab's-ecosystem/).

## Installation

Expand All @@ -37,7 +37,7 @@ For users wanting a more pre-packaged experience several editions are available.

![Pattern Lab Ecosystem](http://patternlab.io/assets/pattern-lab-2-image_18-large-opt.png)

Core, and Editions, are part of the [Pattern Lab Ecosystem](http://patternlab.io/docs/advanced-ecosystem-overview.html). With this architecture, we encourage people to write and maintain their own Editions, Starterkits, and even PatternEngines.
Core, and Editions, are part of the [Pattern Lab Ecosystem](https://patternlab.io/docs/overview-of-pattern-lab's-ecosystem/). With this architecture, we encourage people to write and maintain their own Editions, Starterkits, and even PatternEngines.

## Usage

Expand All @@ -59,7 +59,7 @@ patternlab.serve({
});
```

* Read more about [configuration](http://patternlab.io/docs/advanced-config-options.html#node) via `patternlab-config.json`.
* Read more about [configuration](https://patternlab.io/docs/editing-the-configuration-options/) via `patternlab-config.json`.

* Read more about the rest of [Public API](./docs), and already implemented for you within [Editions](#editions).

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/lib/loadPattern.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module.exports = function(relPath, patternlab) {
'While Pattern Lab may still function, assets may 404 and frontend links may break. Consider yourself warned. '
);
logger.warning(
'Read More: http://patternlab.io/docs/pattern-organization.html'
'Read More: https://patternlab.io/docs/overview-of-patterns/'
);
logger.warning('');
}
Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/engine_handlebars_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function testFindPartials(test, partialTests) {

// setup current pattern from what we would have during execution
// docs on partial syntax are here:
// http://patternlab.io/docs/pattern-including.html
// https://patternlab.io/docs/including-patterns/
var currentPattern = Pattern.create(
'01-molecules/00-testing/00-test-mol.hbs', // relative path now
null, // data
Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/engine_liquid_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function testFindPartials(test, partialTests) {

// setup current pattern from what we would have during execution
// docs on partial syntax are here:
// http://patternlab.io/docs/pattern-including.html
// https://patternlab.io/docs/including-patterns/
var currentPattern = Pattern.create(
'01-molecules/00-testing/00-test-mol.liquid', // relative path now
null, // data
Expand Down
6 changes: 3 additions & 3 deletions packages/core/test/engine_mustache_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function testFindPartials(test, partialTests) {

// setup current pattern from what we would have during execution
// docs on partial syntax are here:
// http://patternlab.io/docs/pattern-including.html
// https://patternlab.io/docs/including-patterns/
var currentPattern = Pattern.create(
'01-molecules/00-testing/00-test-mol.mustache', // relative path now
null, // data
Expand All @@ -76,7 +76,7 @@ function testFindPartialsWithStyleModifiers(test, partialTests) {

// setup current pattern from what we would have during execution
// docs on partial syntax are here:
// http://patternlab.io/docs/pattern-including.html
// https://patternlab.io/docs/including-patterns/
var currentPattern = Pattern.create(
'01-molecules/00-testing/00-test-mol.mustache', // relative path now
null, // data
Expand All @@ -102,7 +102,7 @@ function testFindPartialsWithPatternParameters(test, partialTests) {

// setup current pattern from what we would have during execution
// docs on partial syntax are here:
// http://patternlab.io/docs/pattern-including.html
// https://patternlab.io/docs/including-patterns/
var currentPattern = Pattern.create(
'01-molecules/00-testing/00-test-mol.mustache', // relative path now
null, // data
Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/engine_twig_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function testFindPartials(test, partialTests) {

// setup current pattern from what we would have during execution
// docs on partial syntax are here:
// http://patternlab.io/docs/pattern-including.html
// https://patternlab.io/docs/including-patterns/
var currentPattern = Pattern.create(
'01-molecules/00-testing/00-test-mol.twig', // relative path now
null, // data
Expand Down
2 changes: 1 addition & 1 deletion packages/development-edition-engine-handlebars/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This Development Edition is a variant of [Edition Node](https://github.com/patte
* Develop the [Handlebars Engine](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-handlebars)
* Build and test against Handlebars pattern tree

> Development Editions of Pattern Lab provide the ability to work on and commit changes to select packages within the overall Pattern Lab [ecosystem](http://patternlab.io/docs/advanced-ecosystem-overview.html). This Edition is NOT stable.
> Development Editions of Pattern Lab provide the ability to work on and commit changes to select packages within the overall Pattern Lab [ecosystem](https://patternlab.io/docs/overview-of-pattern-lab's-ecosystem/). This Edition is NOT stable.

## Working on Pattern Lab's UI Locally
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This is the default location to place meta files, otherwise known a pattern's header and footer.

Pattern Lab builds each pattern while prepending and appending the header and footer. Read more about [pattern headers and footers](http://patternlab.io/docs/pattern-header-footer.html).
Pattern Lab builds each pattern while prepending and appending the header and footer. Read more about [pattern headers and footers](https://patternlab.io/docs/modifying-the-pattern-header-and-footer/).

If you wish to rename this directory, make sure you update the `paths.source.meta` property within `patternlab-config.json`.
2 changes: 1 addition & 1 deletion packages/development-edition-engine-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ This Development Edition is a variant of [Edition Node Gulp](https://github.com/

If you'd like to help with the React Engine, please reference the [contribution guidelines](https://github.com/pattern-lab/patternlab-node/blob/master/.github/CONTRIBUTING.md).

> Development Editions of Pattern Lab provide the ability to work on and commit changes to select packages within the overall Pattern Lab [ecosystem](http://patternlab.io/docs/advanced-ecosystem-overview.html). This Edition is NOT stable.
> Development Editions of Pattern Lab provide the ability to work on and commit changes to select packages within the overall Pattern Lab [ecosystem](https://patternlab.io/docs/overview-of-pattern-lab's-ecosystem/). This Edition is NOT stable.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This is the default location to place annotations.

Pattern Lab uses annotations defined here to markup the UI. Read more about [annotations](http://patternlab.io/docs/pattern-adding-annotations.html).
Pattern Lab uses annotations defined here to markup the UI. Read more about [annotations](https://patternlab.io/docs/adding-annotations/).

If you wish to rename this directory, make sure you update the `paths.source.annotations` property within `patternlab-config.json`.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This is the default location to place meta files, otherwise known a pattern's header and footer.

Pattern Lab builds each pattern while prepending and appending the header and footer. Read more about [pattern headers and footers](http://patternlab.io/docs/pattern-header-footer.html).
Pattern Lab builds each pattern while prepending and appending the header and footer. Read more about [pattern headers and footers](https://patternlab.io/docs/modifying-the-pattern-header-and-footer/).

If you wish to rename this directory, make sure you update the `paths.source.meta` property within `patternlab-config.json`.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This is the default location to place pattern files.

Pattern Lab builds patterns and the ui from the structure defined within. Read more about [pattern organization](http://patternlab.io/docs/pattern-organization.html).
Pattern Lab builds patterns and the ui from the structure defined within. Read more about [pattern organization](https://patternlab.io/docs/overview-of-patterns/).

If you wish to rename this directory, make sure you update the `paths.source.patterns` property within `patternlab-config.json`.
2 changes: 1 addition & 1 deletion packages/development-edition-engine-twig/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This Development Edition is a variant of [Edition Node](https://github.com/patte
* Develop the [Twig Engine](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-twig)
* Build and test against Twig pattern tree

> Development Editions of Pattern Lab provide the ability to work on and commit changes to select packages within the overall Pattern Lab [ecosystem](http://patternlab.io/docs/advanced-ecosystem-overview.html). This Edition is NOT stable.
> Development Editions of Pattern Lab provide the ability to work on and commit changes to select packages within the overall Pattern Lab [ecosystem](https://patternlab.io/docs/overview-of-pattern-lab's-ecosystem/). This Edition is NOT stable.

## Working on Pattern Lab's UI Locally
Expand Down
2 changes: 1 addition & 1 deletion packages/edition-node-gulp/source/_annotations/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This is the default location to place annotations.

Pattern Lab uses annotations defined here to markup the UI. Read more about [annotations](http://patternlab.io/docs/pattern-adding-annotations.html).
Pattern Lab uses annotations defined here to markup the UI. Read more about [annotations](https://patternlab.io/docs/adding-annotations/).

If you wish to rename this directory, make sure you update the `paths.source.annotations` property within `patternlab-config.json`.
2 changes: 1 addition & 1 deletion packages/edition-node-gulp/source/_meta/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This is the default location to place meta files, otherwise known a pattern's header and footer.

Pattern Lab builds each pattern while prepending and appending the header and footer. Read more about [pattern headers and footers](http://patternlab.io/docs/pattern-header-footer.html).
Pattern Lab builds each pattern while prepending and appending the header and footer. Read more about [pattern headers and footers](https://patternlab.io/docs/modifying-the-pattern-header-and-footer/).

If you wish to rename this directory, make sure you update the `paths.source.meta` property within `patternlab-config.json`.
2 changes: 1 addition & 1 deletion packages/edition-node-gulp/source/_patterns/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This is the default location to place pattern files.

Pattern Lab builds patterns and the ui from the structure defined within. Read more about [pattern organization](http://patternlab.io/docs/pattern-organization.html).
Pattern Lab builds patterns and the ui from the structure defined within. Read more about [pattern organization](https://patternlab.io/docs/overview-of-patterns/).

If you wish to rename this directory, make sure you update the `paths.source.patterns` property within `patternlab-config.json`.
2 changes: 1 addition & 1 deletion packages/edition-node/source/_annotations/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This is the default location to place annotations.

Pattern Lab uses annotations defined here to markup the UI. Read more about [annotations](http://patternlab.io/docs/pattern-adding-annotations.html).
Pattern Lab uses annotations defined here to markup the UI. Read more about [annotations](https://patternlab.io/docs/adding-annotations/).

If you wish to rename this directory, make sure you update the `paths.source.annotations` property within `patternlab-config.json`.
2 changes: 1 addition & 1 deletion packages/edition-node/source/_meta/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This is the default location to place meta files, otherwise known a pattern's header and footer.

Pattern Lab builds each pattern while prepending and appending the header and footer. Read more about [pattern headers and footers](http://patternlab.io/docs/pattern-header-footer.html).
Pattern Lab builds each pattern while prepending and appending the header and footer. Read more about [pattern headers and footers](https://patternlab.io/docs/modifying-the-pattern-header-and-footer/).

If you wish to rename this directory, make sure you update the `paths.source.meta` property within `patternlab-config.json`.
2 changes: 1 addition & 1 deletion packages/edition-node/source/_patterns/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This is the default location to place pattern files.

Pattern Lab builds patterns and the ui from the structure defined within. Read more about [pattern organization](http://patternlab.io/docs/pattern-organization.html).
Pattern Lab builds patterns and the ui from the structure defined within. Read more about [pattern organization](https://patternlab.io/docs/overview-of-patterns/).

If you wish to rename this directory, make sure you update the `paths.source.patterns` property within `patternlab-config.json`.
2 changes: 1 addition & 1 deletion packages/engine-handlebars/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ To install the Handlebars PatternEngine in your edition, `npm install --save @pa

## Supported features

* [x] [Includes](http://patternlab.io/docs/pattern-including.html)
* [x] [Includes](https://patternlab.io/docs/including-patterns/)
* [x] Lineage
* [x] [Hidden Patterns](http://patternlab.io/docs/pattern-hiding.html)
* [x] [Pseudo-Patterns](http://patternlab.io/docs/pattern-pseudo-patterns.html)
Expand Down
2 changes: 1 addition & 1 deletion packages/engine-liquid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To install the Liquid PatternEngine in your edition, `npm install @pattern-lab/e

This PatternEngine is in alpha and considered a work in progress.

* [x] [Includes](http://patternlab.io/docs/pattern-including.html)
* [x] [Includes](https://patternlab.io/docs/including-patterns/)
* [x] Lineage

**TBD**
Expand Down
2 changes: 1 addition & 1 deletion packages/engine-nunjucks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
To install the Nunjucks PatternEngine in your edition, run `npm install @pattern-lab/engine-nunjucks`.

## Supported features
- [x] [Includes](http://patternlab.io/docs/pattern-including.html)
- [x] [Includes](https://patternlab.io/docs/including-patterns/)
- [x] Lineage
- [x] [Hidden Patterns](http://patternlab.io/docs/pattern-hiding.html)
- [x] [Pseudo-Patterns](http://patternlab.io/docs/pattern-pseudo-patterns.html)
Expand Down
2 changes: 1 addition & 1 deletion packages/engine-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To install the React PatternEngine in your edition, `npm install @pattern-lab/en

## Supported features

* [x] [Includes](http://patternlab.io/docs/pattern-including.html)
* [x] [Includes](https://patternlab.io/docs/including-patterns/)
* [x] Data inheritance: This can be achieved by combining react `props` & `defaultProps`
* [x] [Hidden Patterns](http://patternlab.io/docs/pattern-hiding.html)
* [x] [Pseudo-Patterns](http://patternlab.io/docs/pattern-pseudo-patterns.html)
Expand Down
2 changes: 1 addition & 1 deletion packages/engine-underscore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To install the Underscore PatternEngine in your edition, `npm install @pattern-l

## Supported features

* [x] [Includes](http://patternlab.io/docs/pattern-including.html) (Accomplished using the included [`_.renderNamedPartial()`](https://github.com/pattern-lab/patternlab-node/blob/master/packages/engine-underscore/lib/engine_underscore.js#L54-L60))
* [x] [Includes](https://patternlab.io/docs/including-patterns/) (Accomplished using the included [`_.renderNamedPartial()`](https://github.com/pattern-lab/patternlab-node/blob/master/packages/engine-underscore/lib/engine_underscore.js#L54-L60))
* [x] Lineage
* [x] [Hidden Patterns](http://patternlab.io/docs/pattern-hiding.html)
* [x] [Pseudo-Patterns](http://patternlab.io/docs/pattern-pseudo-patterns.html)
Expand Down

0 comments on commit b4eb12e

Please sign in to comment.