1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-11-26 00:35:02 +03:00

Fix links in docs

This commit is contained in:
Brent Jackson 2018-08-05 14:09:16 -04:00
parent 58b6a8c1f0
commit 77aa21b376
2 changed files with 7 additions and 3 deletions

View File

@ -21,8 +21,8 @@ npm i -D mdx-deck
```
- :memo: Write presentations in markdown
- :atom_symbol: Import and use React components
- :nail_care: Customizable [themes](#theming) and [components](#custom-components)
- :atom_symbol: Import and use [React components](#imports)
- :nail_care: Customizable [themes](#theming) and components
- :zero: Zero-config CLI
- :tipping_hand_woman: [Presenter mode](#presenter-mode)
- :notebook: [Speaker notes](#speaker-notes)

View File

@ -50,7 +50,7 @@ export default {
### Google Fonts
To use webfonts, mdx-deck will attempt to add `<link>` tags for any font from Google Fonts.
To load webfonts from other sources, use a custom [Provider component](#provider-component) to add custom `<link>` tags.
To load webfonts from other sources, use a custom [Provider component](advanced.md#custom-provider-component) to add custom `<link>` tags.
### Syntax Highlighting
@ -152,12 +152,16 @@ The following keys are available for theming:
- `h1`: CSS for `<h1>`
- `h2`: CSS for `<h2>`
- `h3`: CSS for `<h3>`
- `h4`: CSS for `<h4>`
- `h5`: CSS for `<h5>`
- `h6`: CSS for `<h6>`
- `paragraph`: CSS for `<p>`
- `link`: CSS for `<a>`
- `ul`: CSS for `<ul>`
- `ol`: CSS for `<ol>`
- `li`: CSS for `<li>`
- `img`: CSS for `<img>`
- `blockquote`: CSS for `<blockquote>`
- `table`: CSS for `<table>`
- `components`: object of MDX components to render markdown
- `Provider`: component for wrapping the entire app