Use absolute paths in links

Summary: allow-large-files

Reviewed By: danielbuechele

Differential Revision: D7023260

fbshipit-source-id: a797d09b61530b13da10e02c21acef13c508470c
This commit is contained in:
Emil Sjölander
2018-02-19 02:55:30 -08:00
committed by Facebook Github Bot
parent e024943c4b
commit bbdb62e654
163 changed files with 207 additions and 467 deletions

View File

@@ -1,5 +1,5 @@
---
path: "docs/absolute-relative-layout"
path: "/docs/absolute-relative-layout"
title: "Absolute/Relative Layout"
hasPlayground: true
---

View File

@@ -1,5 +1,5 @@
---
path: "docs/align-content"
path: "/docs/align-content"
title: "Align Content"
hasPlayground: true
initialPlayground: eyJ3aWR0aCI6NTAwLCJoZWlnaHQiOjUwMCwiYWxpZ25Db250ZW50IjoxLCJmbGV4V3JhcCI6MSwiY2hpbGRyZW4iOlt7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJhbGlnbkNvbnRlbnQiOjIsIm1pbldpZHRoIjpudWxsLCJtYXhXaWR0aCI6bnVsbCwibWluSGVpZ2h0IjpudWxsLCJtYXhIZWlnaHQiOm51bGx9XSwibWluV2lkdGgiOm51bGwsIm1heFdpZHRoIjpudWxsLCJtaW5IZWlnaHQiOm51bGwsIm1heEhlaWdodCI6bnVsbH0=
@@ -8,7 +8,7 @@ initialPlayground: eyJ3aWR0aCI6NTAwLCJoZWlnaHQiOjUwMCwiYWxpZ25Db250ZW50IjoxLCJmb
## Align Content
Align content defines the distribution of lines along the cross-axis. This only
has effect when items are wrapped to multiple lines using [`flex wrap`](flex-wrap).
has effect when items are wrapped to multiple lines using [`flex wrap`](/docs/flex-wrap).
**FLEX START (DEFAULT)** Align wrapped lines to the start of the container's cross axis.

View File

@@ -1,5 +1,5 @@
---
path: "docs/align-items"
path: "/docs/align-items"
title: "Align Items / Self"
hasPlayground: true
---
@@ -7,7 +7,7 @@ hasPlayground: true
## Align Items
Align items describes how to align children along the cross axis of their container.
Align items is very similar to [`justify content`](justify-content) but instead of
Align items is very similar to [`justify content`](/docs/justify-content) but instead of
applying to the main axis, `align items` applies to the cross axis.
**STRETCH (DEFAULT)** Stretch children of a container to match the `height` of the container's cross axis.

View File

@@ -1,5 +1,5 @@
---
path: "docs/aspect-ratio"
path: "/docs/aspect-ratio"
title: "Aspect Ratio"
hasPlayground: true
---

View File

@@ -1,5 +1,5 @@
---
path: "docs/flex-direction"
path: "/docs/flex-direction"
title: "Flex Direction"
hasPlayground: true
---
@@ -11,16 +11,16 @@ This is also referred to as the main axis. The main axis is the direction in
which children are laid out. The cross axis the the axis perpendicular to the
main axis, or the axis which wrapping lines are laid out in.
**ROW (DEFAULT)** Align children from left to right. If [wrapping](flex-wrap) is enabled then
**ROW (DEFAULT)** Align children from left to right. If [wrapping](/docs/flex-wrap) is enabled then
the next line will start under the first item on the left of the container.
**COLUMN** Align children from top to bottom. If [wrapping](flex-wrap) is enabled then
**COLUMN** Align children from top to bottom. If [wrapping](/docs/flex-wrap) is enabled then
the next line will start to the left first item on the top of the container.
**ROW REVERSE** Align children from right to left. If [wrapping](flex-wrap) is enabled then
**ROW REVERSE** Align children from right to left. If [wrapping](/docs/flex-wrap) is enabled then
the next line will start under the first item on the right of the container.
**COLUMN REVERSE** Align children from bottom to top. If [wrapping](flex-wrap) is enabled then
**COLUMN REVERSE** Align children from bottom to top. If [wrapping](/docs/flex-wrap) is enabled then
the next line will start to the left first item on the bottom of the container.
<controls prop="flexDirection"></controls>

View File

@@ -1,5 +1,5 @@
---
path: "docs/flex-wrap"
path: "/docs/flex-wrap"
title: "Flex Wrap"
hasPlayground: true
initialPlayground: eyJ3aWR0aCI6NTAwLCJoZWlnaHQiOjUwMCwiYWxpZ25Db250ZW50IjoxLCJmbGV4V3JhcCI6MSwiY2hpbGRyZW4iOlt7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfSx7IndpZHRoIjoxMDAsImhlaWdodCI6MTAwLCJtaW5XaWR0aCI6bnVsbCwibWF4V2lkdGgiOm51bGwsIm1pbkhlaWdodCI6bnVsbCwibWF4SGVpZ2h0IjpudWxsfV0sIm1pbldpZHRoIjpudWxsLCJtYXhXaWR0aCI6bnVsbCwibWluSGVpZ2h0IjpudWxsLCJtYXhIZWlnaHQiOm51bGx9
@@ -17,5 +17,5 @@ reversed.
<controls prop="flexWrap"></controls>
When wrapping lines [`align content`](align-content) can be used to specify how the
When wrapping lines [`align content`](/docs/align-content) can be used to specify how the
lines are placed in the container.

View File

@@ -1,5 +1,5 @@
---
path: "docs/flex"
path: "/docs/flex"
title: "Flex Basis, Grow, and Shrink"
hasPlayground: true
---

View File

@@ -1,5 +1,5 @@
---
path: "docs/justify-content"
path: "/docs/justify-content"
title: "Justify Content"
hasPlayground: true
---

View File

@@ -1,5 +1,5 @@
---
path: "docs/layout-direction"
path: "/docs/layout-direction"
title: "Layout Direction"
hasPlayground: false
---

View File

@@ -1,5 +1,5 @@
---
path: "docs/margins-paddings-borders"
path: "/docs/margins-paddings-borders"
title: "Margins, Paddings, and Borders"
hasPlayground: true
---

View File

@@ -1,5 +1,5 @@
---
path: "docs/min-max"
path: "/docs/min-max"
title: "Max / Min Width and Height"
hasPlayground: true
---

View File

@@ -1,5 +1,5 @@
---
path: "docs/width-height"
path: "/docs/width-height"
title: "Width and Height"
hasPlayground: true
---