Commit Graph

105 Commits

Author SHA1 Message Date
endiliey e6b077410c v2.0.0-alpha.33 2019-11-08 13:27:03 +07:00
Endi 384e83a737
chore(v2): upgrade deps (#1945)
* chore(v2): upgrade dependencies

* revert TS 3.7 optional chaining
2019-11-07 13:32:55 +07:00
endiliey cd9e2f2346 v2.0.0-alpha.32 2019-11-04 12:45:05 +07:00
Endi 2d13fe2e0f chore: downgrade imagemin (#1933) 2019-11-03 23:20:47 +08:00
Jiawen Geng 33718b6f8f misc(v1): use Node.js lts version (#1920)
This is much stable and more performant
2019-11-03 22:57:51 +08:00
endiliey ab1520548d chore: bump dependencies 2019-11-01 01:25:10 +07:00
Jacob Sarnowski 421598eb65 fix(v1): mobile safari search input misalignment in header (#1895) 2019-10-27 13:19:52 -07:00
blitz137 f14b6eee39 misc(v1): use primary color for hovered items in table of contents (#1871)
* fix issue#1752

when element in side nav is hovered over the color changes.

* Update main.css
2019-10-27 13:17:30 -07:00
endiliey d4342dcbf3 v2.0.0-alpha.31 2019-10-26 14:12:15 +07:00
endiliey b65c1b2242 v2.0.0-alpha.30 2019-10-22 12:23:55 +07:00
endiliey b56adb7ca1 v2.0.0-alpha.29 2019-10-21 19:28:36 +07:00
endiliey 87866c1d1d v2.0.0-alpha.28 2019-10-21 12:28:12 +07:00
Endi 1844c2bdd6
chore(v2): upgrade dependencies (#1865)
* chore(v2): upgrade dependencies

* nits
2019-10-21 12:25:30 +07:00
Yangshun Tay f2e800ba6a
v1.14.0 (#1864) 2019-10-20 12:36:12 -07:00
Yangshun Tay a690d34af0
feat(v1): allow specifying meta desc in front matter (#1859)
* feat(v1): allow specifying meta desc in front matter

* misc(v2): sync with v1
2019-10-20 11:17:10 -07:00
Endi d96b5f99b9 fix(v2): swizzle should receive correct load context (#1844)
* fix(v2): swizzle should receive correct load context

* new prettier version

* niits
2019-10-16 08:56:09 -07:00
endiliey 0cf5a5bf49 v2.0.0-alpha.27 2019-10-14 18:10:32 +07:00
Yangshun Tay 9f6460fde0 misc: facebook/Docusaurus -> facebook/docusaurus 2019-10-12 01:11:34 -07:00
endiliey d1e426afd8 v2.0.0-alpha.26 2019-10-12 11:53:42 +07:00
endiliey 8d4def5c08 v2.0.0-alpha.25 2019-10-01 20:29:26 +07:00
Endi 0397f7b719
chore(v2): upgrade babel, webpack, and mdx (#1798)
* chore: upgrade babel, webpack, and mdx

* changelog
2019-09-24 18:55:07 +08:00
Yangshun Tay 0584407257
v1.13.0 (#1789) 2019-09-15 23:13:09 -07:00
Emelia Smith 250a818e7f feat(v1): strip html from TOC (#1762)
The approach here is to first strip the HTML from the heading's content, then rendered it with markdown to get the HTML content for the TOC entry, then to strip the HTML from the rendered content again, as to get the text for the TOC entry's link.

Adds an additional dependency of striptags (MIT licensed)

Example TOC Entry, given the heading of:

```markdown
```

```javascript
{
  hashLink: 'foo',
  rawContent: '<a name="foo"></a> _Foo_',
  content: '<em>Foo</em>',
  children: []
}
```

Previously this TOC entry would be:

```javascript
{
  hashLink: 'a-name-foo-a-_foo_',
  rawContent: '<a name="foo"></a> _Foo_',
  content: '&lt;a name=&quot;foo&quot;&gt;&lt;/a&gt; <em>Foo</em>',
  children: []
}
```

closes issue #1703
2019-09-13 14:57:22 -07:00
BlackRedScarf a16e346c81 fix: footer links margin (#1781)
* fix footer links margin

* Update main.css
2019-09-13 13:11:43 -07:00
Endi ca3ae5ea96
chore: upgrade deps (#1733) 2019-08-01 19:14:12 +07:00
endiliey 41126fed12 v2.0.0-alpha.24 2019-07-24 15:55:28 +07:00
Chen Hui Jing bd72aacfe8 fix: content aligning breaks at IE11 (#1684) 2019-07-20 21:48:34 -07:00
endiliey f37269aaad v2.0.0-alpha.23 2019-07-21 11:18:03 +07:00
endiliey ae620cd530 v2.0.0-alpha.22 2019-07-20 18:31:41 +07:00
Wei Gao 05b28b5520 v1.12.0 (#1679)
* v1.12.0

* Add compare version link for v1.12

* Update version numbers for v1.12

* cut new docs

* changelog
2019-07-20 17:21:47 +07:00
Endi 0daed4abec feat(v2): optimize dev by omiting production only plugins (#1673) 2019-07-18 11:18:03 -07:00
Endi e1eea7b493
fix: dont render html for meta description (#1672) 2019-07-18 18:20:04 +07:00
Endi 96d6369985
chore(v1.v2): upgrade a lot of packages deps (#1668)
* chore(v2): upgrade a lot of v2 packages deps

* chore(v1): upgrade a lot of v1 packages deps
2019-07-17 22:59:13 +07:00
Masafumi Koba d77f5538c2 fix: fix PostCSS warning on `build` command (#1664)
The warning is produced on `cssnano` call. See below:

> Without `from` option PostCSS could generate wrong source map and will not find Browserslist config. Set it to CSS file path or to `undefined` to prevent this warning.

Reproduction:

```shell
mkdir work
cd work
npx docusaurus-init
cd website
yarn install
yarn run build
```

Environments:

- Node: 12.6.0
- Yarn: 1.17.3
2019-07-15 18:08:06 +08:00
endiliey dc15a51745 v2.0.0-alpha.21 2019-07-14 18:54:53 +07:00
endiliey 307f384684 v2.0.0-alpha.20 2019-07-14 17:36:40 +07:00
Saugat Acharya 4faa608edd docs(v1): introduce docsSideNavCollapsible in siteConfig.js (#1649)
* Add information for docsSideNavCollapsible

* Add trailing comma
2019-07-11 21:30:19 -07:00
Endi b2558ac379
fix: wrong bootstrapped footer social links (#1647) 2019-07-10 23:45:17 +07:00
PA 725219716f feat: use primary color for highlighted items in table of contents (#1628)
Currently the items in table of contents are highlighted as bold based on items being
viewed on the screen or as the user scrolls up/down on a page. Added the `primaryColor`
of the site's configuration to make the current section being viewed standout more
in the table of content.

closes #1608
2019-07-02 23:09:14 -07:00
Parth Patel db44eccac3 fix: replace apostrophe with empty string in header slugification (#1618)
* Replace apostrophe with empty string in header

This change is to replicate the github behviour with respect to apostrophe in
headers. When there is an apostrophe in a header, github replaces it with empty string
when creating an anchor link to that header. Docusaurus should follow the same convention.
2019-06-21 17:40:04 -07:00
Yangshun Tay 49cfdeb42b feat: make blog posts unlisted only in production 2019-06-15 10:32:43 -07:00
Ólafur Páll Geirsson da3c91373e feat: add "unlisted" front matter option for blog posts (#1396)
* Add `unlisted` header option for blog posts, fixes #1393.

Previously, the blog sidebar listed the most recent blog posts sorted by
their publish date. This commit adds the ability to hide a specific blog
post from the sidebar and the feed of all blog posts by adding the
`unlisted: true` header option.

```md
title: My Draft Post
unlisted: true # Hide from blog sidebar and main blog page feed.
---
```

* Rename "unlisted" into "draft".
2019-06-15 09:24:15 -07:00
Oscar Walter a5996829ef fix: require babel dependencies directly (#1575)
**What it does:**
 - Directly require babel dependencies instead of asking babel to do it.
2019-06-14 12:58:46 +08:00
Shawn Tabrizi b1023aa9ac fix: remove the `Container` component from the `docsNavContainer` (#1599)
In this case, the `docsNavContainer` does not pick up any styles or attributes from the `container` component it is wrapped in.

It does however pick up the pesky `.container` className, which when paired with bootstrap, messes up the styling of the top navigation in mobile.

This change is completely non-destructive, but helps enable the use of bootstrap on top of Docusaurus.
2019-06-13 09:05:41 -07:00
Yangshun Tay 3496f6e609
v1.11.1 (#1592)
* v1.11.1

* chore: publish new website

* misc: fix tests
2019-06-08 10:56:21 -07:00
endiliey 1fecdb7d02 v2.0.0-alpha.19 2019-06-07 00:52:48 +08:00
Endi b08b472435
chore(v2): dependency update (#1573)
* chore(v2): dependency update

* nits
2019-06-06 19:03:29 +07:00
Sviatoslav e486d3d1b0 fix: Add support for non-latin characters in scrollSpy ToC highlighter (#1570) 2019-06-06 16:50:55 +07:00
Hongarc 594ede3bdc chore: remove `@types/chalk` and `@types/globby` (#1540)
* chore: remove `@types/chalk` and `@types/globby`

* chore: update `chalk` and `globby`
2019-06-02 19:04:48 +07:00
Yangshun Tay 68ca885f5b
v1.11.0 (#1534) 2019-05-30 23:07:38 -07:00