Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow disabling tokenizers #119

Merged
merged 10 commits into from
Feb 12, 2021
Merged

Conversation

kellyjosephprice
Copy link
Collaborator

@kellyjosephprice kellyjosephprice commented Jan 30, 2021

RM-215

🧰 Changes

Adds the option of disabling tokenizers. This is in service of the editor's markdown decorators. During deserialization, we can leave the inlines as plain text. Then, during the decoration step, we can parse the markdown with just the inline tokenizers.

Usage

  const opts = { tokenizerSet: 'blocks' };
  markdown.mdast(md, opts); // won't parse inline code, emphasis, etc.

@kellyjosephprice kellyjosephprice temporarily deployed to markdown-pr-119 January 30, 2021 01:16 Inactive
@kellyjosephprice kellyjosephprice temporarily deployed to markdown-pr-119 January 30, 2021 01:17 Inactive
@kellyjosephprice kellyjosephprice changed the title feat/allow-disabling-tokenizers feat: allow disabling tokenizers Feb 3, 2021
@kellyjosephprice kellyjosephprice requested review from a team, Dashron and gratcliff and removed request for a team February 3, 2021 00:52
@kellyjosephprice kellyjosephprice marked this pull request as ready for review February 3, 2021 20:05
@rafegoldberg
Copy link
Contributor

Can you add a brief usage example to the PR description?

@kellyjosephprice kellyjosephprice temporarily deployed to markdown-pr-119 February 9, 2021 18:39 Inactive
@kellyjosephprice kellyjosephprice temporarily deployed to markdown-pr-119 February 11, 2021 22:39 Inactive
@kellyjosephprice kellyjosephprice temporarily deployed to markdown-pr-119 February 12, 2021 00:36 Inactive
@kellyjosephprice kellyjosephprice temporarily deployed to markdown-pr-119 February 12, 2021 00:55 Inactive
@kellyjosephprice kellyjosephprice temporarily deployed to markdown-pr-119 February 12, 2021 00:56 Inactive
@kellyjosephprice kellyjosephprice added the enhancement New feature or request label Feb 12, 2021
Copy link
Contributor

@rafegoldberg rafegoldberg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍🏼 I had some suggestions, but nothing I'd hold merging this over. Also added this option to the docs in #129, so feel free to merge that whenever!

options.js Outdated Show resolved Hide resolved
options.js Outdated
Comment on lines 74 to 78
if (opts.tokenizerSet in disableTokenizers) {
return { ...disableTokenizers[opts.tokenizerSet], ...opts };
} else if (opts.tokenizerSet) {
throw new Error(`opts.tokenizerSet "${opts.tokenizerSet}" not one of "${Object.keys(disableTokenizers)}"`);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we rename the public-facing option to disableTokenizers? It feels a bit redundant here, but I think it'd be a bit more descriptive of what it actually does for the end user.

Suggested change
if (opts.tokenizerSet in disableTokenizers) {
return { ...disableTokenizers[opts.tokenizerSet], ...opts };
} else if (opts.tokenizerSet) {
throw new Error(`opts.tokenizerSet "${opts.tokenizerSet}" not one of "${Object.keys(disableTokenizers)}"`);
}
if (opts.disableTokenizers in disableTokenizers) {
return { ...disableTokenizers[opts.disableTokenizers], ...opts };
} else if (opts.disableTokenizers) {
throw new Error(`opts.disableTokenizers "${opts.disableTokenizers}" not one of "${Object.keys(disableTokenizers)}"`);
}

__tests__/link-parsers.test.js Outdated Show resolved Hide resolved
@rafegoldberg rafegoldberg mentioned this pull request Feb 12, 2021
2 tasks
Co-authored-by: Rafe Goldberg <[email protected]>
@kellyjosephprice kellyjosephprice temporarily deployed to markdown-pr-119 February 12, 2021 01:49 Inactive
@kellyjosephprice kellyjosephprice temporarily deployed to markdown-pr-119 February 12, 2021 02:00 Inactive
[<img height=20 src=https://readme.com/static/favicon.ico align=center>][demo]
:---:

## 🧰 Changes

- [ ] Update [the option name in the docs](b2e45f4#diff-31bcba2ccafa41d46fbbd6d1219f7f1e3b1fb3cad9faa8e4dc521bbb579dd7b3R69) depending on the resolution of [**this question**](#119 (comment))...
- [x] Add disable tokenizer to [the options list in the intro](https://rdmd.readme.io/docs#utilities).

[demo]: https://markdown-pr-PR_NUMBER.herokuapp.com
[prod]: https://SUBDOMAIN.readme.io
@kellyjosephprice kellyjosephprice temporarily deployed to markdown-pr-119 February 12, 2021 02:00 Inactive
@kellyjosephprice kellyjosephprice merged commit 0418a05 into next Feb 12, 2021
@kellyjosephprice kellyjosephprice deleted the feat/disable-tokenizers branch February 12, 2021 05:47
rafegoldberg pushed a commit that referenced this pull request Feb 12, 2021
## Version 6.26.0-next.1

### ✨ New & Improved

* allow disabling tokenizers ([#119](#119)) ([0418a05](0418a05))

<!--SKIP CI-->
@rafegoldberg
Copy link
Contributor

This PR was released!

🚀 Changes included in v6.26.0-next.1

rafegoldberg pushed a commit that referenced this pull request Feb 12, 2021
## Version 6.26.0

### ✨ New & Improved

* allow disabling tokenizers ([#119](#119)) ([0418a05](0418a05))

### 🛠 Fixes & Updates

* add back padding to lists in callouts ([#126](#126)) ([184c238](184c238))
* **deps:** [email protected] + variable@11 ([#123](#123)) ([8ef1575](8ef1575))

### 📘 Tests & Docs

* update the PR template ([#127](#127)) ([72c4475](72c4475))

<!--SKIP CI-->
@rafegoldberg
Copy link
Contributor

This PR was released!

🚀 Changes included in v6.26.0

moyarenko pushed a commit to moyarenko/markdown that referenced this pull request Nov 3, 2022
## Version 1.0.0

### ⚠ BREAKING CHANGES

* CHANGE: Certain tags and a lot of attributes will be stripped from html blocks

### 📘 Tests & Docs

* add category to each page ([#171](https://github.com/moyarenko/markdown/issues/171)) ([9a5e1c6](https://github.com/moyarenko/markdown/commit/9a5e1c613113f04523bbb7d83eacd0621fde570a))
* add link for emoji list ([#547](https://github.com/moyarenko/markdown/issues/547)) ([bab15ff](https://github.com/moyarenko/markdown/commit/bab15ff32b750b028e14fe18642b37b0ba2137ea))
* **readme:** add Local Development section ([#283](https://github.com/moyarenko/markdown/issues/283)) ([f2414ed](https://github.com/moyarenko/markdown/commit/f2414ed570961c56b683c1547466265cf4ff596f))
* adding a code of conduct ([b00b1f5](https://github.com/moyarenko/markdown/commit/b00b1f5b368970db97577a13a84bedbffc73afe5))
* adding a new oneOf example for a nested oneOf ([31c2902](https://github.com/moyarenko/markdown/commit/31c29028ce49c967ebe3a272fa12068aa6638689))
* adding a pull request template ([5818d33](https://github.com/moyarenko/markdown/commit/5818d33e038143b96d94cfce0db74b68d6c887d4))
* adding a security policy ([bbc81a2](https://github.com/moyarenko/markdown/commit/bbc81a26d3a94c57e5345325d8cb0780d06bd467))
* align status badge ([f43f035](https://github.com/moyarenko/markdown/commit/f43f0354c67b9f2778c1f33272854d565af215f1))
* also delete SECURITY.md ([6b0eb1f](https://github.com/moyarenko/markdown/commit/6b0eb1f2bc3d973dfe028fa54af213dad0c3c14d))
* delete CoC in favor of shared org files ([6eb18ac](https://github.com/moyarenko/markdown/commit/6eb18acce1cf5f77fd5f6417abea245c5bad996e))
* **readme:** formatting and copy edits ([ce9d154](https://github.com/moyarenko/markdown/commit/ce9d1549445cda85998ad6380f7168ce26231ff9))
* graphql/JSX lang support, contributing ([#448](https://github.com/moyarenko/markdown/issues/448)) ([e3c8b43](https://github.com/moyarenko/markdown/commit/e3c8b435cdb7f97aa5ffb566c7e0e3a3fdb25534))
* make cookie example better ([#825](https://github.com/moyarenko/markdown/issues/825)) ([89480ee](https://github.com/moyarenko/markdown/commit/89480ee725136e148702e2fd66189774c4325874))
* **callouts:** minor updates ([#445](https://github.com/moyarenko/markdown/issues/445)) ([f99df00](https://github.com/moyarenko/markdown/commit/f99df00ea2c11e9cae7d7023ae0795b991b04651))
* remove unnecessary slug parameter, newlines ([8e0ac53](https://github.com/moyarenko/markdown/commit/8e0ac533255f9a95b956fbaaccb3c6957767ea11)), closes [/github.com/readmeio/markdown/pull/173#issuecomment-867169250](https://github.com/moyarenko//github.com/readmeio/markdown/pull/173/issues/issuecomment-867169250)
* removing the checklist from our pr template ([4d3afff](https://github.com/moyarenko/markdown/commit/4d3affffa6796438eba7d7158f85355ff7ac8294))
* sync exported markdown to RDMD site ([#105](https://github.com/moyarenko/markdown/issues/105)) ([8651c88](https://github.com/moyarenko/markdown/commit/8651c883beedb9711258f1a1b3f4799fd110c4c5))
* update custom CSS guidance ([#172](https://github.com/moyarenko/markdown/issues/172)) ([5c3725d](https://github.com/moyarenko/markdown/commit/5c3725d4bafd5c11fa3bb1cd93b6d725772d31a7))
* update docs to latest markdown ([#107](https://github.com/moyarenko/markdown/issues/107)) ([239d0df](https://github.com/moyarenko/markdown/commit/239d0df022aecd9996db9b00f86b9ea4f2442341))
* update link ([d90138d](https://github.com/moyarenko/markdown/commit/d90138d855582cbd7aab4c229b83a3d88de9e933))
* update links, minor edits ([57e1fd5](https://github.com/moyarenko/markdown/commit/57e1fd5e114d2fd9e50987485cdf1f0c872aec6a))
* update status badge ([d6d7238](https://github.com/moyarenko/markdown/commit/d6d723859ded6ea42b66aa52926014d09f758980))
* update the PR template ([#127](https://github.com/moyarenko/markdown/issues/127)) ([72c4475](https://github.com/moyarenko/markdown/commit/72c44756b674b0676be1dce951677b062fb22542))
* updating the http-status-codes readme ([7675fce](https://github.com/moyarenko/markdown/commit/7675fce686dc75b3c7bdb05fe42ca25f5bb69192))
* updating the markdown-magic readme ([3dbfaa0](https://github.com/moyarenko/markdown/commit/3dbfaa08cba60114a970692e66e3a1858bba6794))
* updating the pr template ([#462](https://github.com/moyarenko/markdown/issues/462)) ([7b513e0](https://github.com/moyarenko/markdown/commit/7b513e0fbca17afa03d8b89a61429133b852b487))
* updating the readme ([8092dfb](https://github.com/moyarenko/markdown/commit/8092dfbcafb84facf924697f029aaaea4abf7a72))
* updating the root readme a bit ([895a637](https://github.com/moyarenko/markdown/commit/895a6379f38469b3a02370ff0b6ebd8428941782))

### ✨ New & Improved

* **markdown:**  ([#660](https://github.com/moyarenko/markdown/issues/660)) ([268a282](https://github.com/moyarenko/markdown/commit/268a28242dbb94e526db8d73989f278745f0933b)), closes [readmeio/readme#2700](https://github.com/readmeio/readme/issues/2700)
* ✨ implement isomorphic markdown parser package ([#537](https://github.com/moyarenko/markdown/issues/537)) ([8fa38e3](https://github.com/moyarenko/markdown/commit/8fa38e3684d69ddd16d5a710cc008a8d4d254b1c))
* **explorer:** add .markdown-body class to excerpt ([#665](https://github.com/moyarenko/markdown/issues/665)) ([cd1daaf](https://github.com/moyarenko/markdown/commit/cd1daafa1cfbbfc62ff112b2dc495744d17476bc))
* **release:** add a next channel ([#91](https://github.com/moyarenko/markdown/issues/91)) ([5938622](https://github.com/moyarenko/markdown/commit/59386226fc8785f159fe97464ad4aef48dbb58b8))
* add class for blank-line ([#457](https://github.com/moyarenko/markdown/issues/457)) ([347cfa6](https://github.com/moyarenko/markdown/commit/347cfa60cb45a23d3cb50671290b168bd91ce006))
* add dark option for code blocks ([#284](https://github.com/moyarenko/markdown/issues/284)) ([885b844](https://github.com/moyarenko/markdown/commit/885b8441a6ad423b4d59a14a7430c882f5ea1fad))
* add escape type ([#489](https://github.com/moyarenko/markdown/issues/489)) ([dd3d851](https://github.com/moyarenko/markdown/commit/dd3d851f2d0b165c851adf2469ef1b207e881745))
* add lazy flag for images ([#594](https://github.com/moyarenko/markdown/issues/594)) ([fda31b8](https://github.com/moyarenko/markdown/commit/fda31b8dcc60706545d5e42e0c4ebbb0c06cdb5b))
* add safeMode flag ([#517](https://github.com/moyarenko/markdown/issues/517)) ([4e79005](https://github.com/moyarenko/markdown/commit/4e79005f3cc0c1820536657059ad3d2083a66e1d))
* add support for syntax highlighting more languages  ([#728](https://github.com/moyarenko/markdown/issues/728)) ([13cb4e4](https://github.com/moyarenko/markdown/commit/13cb4e4eb06e8f235f4a0acc3ce2f78dcd2ab29a))
* add width support to image compiler ([#417](https://github.com/moyarenko/markdown/issues/417)) ([8fc2d50](https://github.com/moyarenko/markdown/commit/8fc2d500900c406f6685f3ed5596257fcaef9b39))
* add yaml compiler ([#509](https://github.com/moyarenko/markdown/issues/509)) ([ac238d1](https://github.com/moyarenko/markdown/commit/ac238d1d58164071eafeb893992662e4e00c6aec))
* adding a handful of new status codes ([#520](https://github.com/moyarenko/markdown/issues/520)) ([35db543](https://github.com/moyarenko/markdown/commit/35db54372bc59ab0ac080731cc738c39eab2f96f))
* adding a handful of unofficial http status codes ([#522](https://github.com/moyarenko/markdown/issues/522)) ([6d94a79](https://github.com/moyarenko/markdown/commit/6d94a79039e5cbd5baaf7ab6422e0c1dee1d528f))
* adding a new `copyButtons` option for disabling code copy btns ([#59](https://github.com/moyarenko/markdown/issues/59)) ([e4c40fd](https://github.com/moyarenko/markdown/commit/e4c40fde5f0e6411e24b25ba44c8c424bf406913))
* adding support for a handful of language highlight aliases ([#643](https://github.com/moyarenko/markdown/issues/643)) ([7d52154](https://github.com/moyarenko/markdown/commit/7d5215441ef6559ecda58a5c09fcf56438ab190e))
* adding support for cookie auth ([#817](https://github.com/moyarenko/markdown/issues/817)) ([5a2ef14](https://github.com/moyarenko/markdown/commit/5a2ef14615fde6302d2ac062aa49e7c10ba59043))
* adding support for cookies to oas-to-har ([#794](https://github.com/moyarenko/markdown/issues/794)) ([37b020d](https://github.com/moyarenko/markdown/commit/37b020d5dc86f444807e8194a0fe2bdbfdf6548d))
* adding support for handling `default` responses ([#846](https://github.com/moyarenko/markdown/issues/846)) ([783fe1a](https://github.com/moyarenko/markdown/commit/783fe1a24c9cc2b3509366bb0e9b862ae71a7a99))
* adding support for highlighting diffs ([#835](https://github.com/moyarenko/markdown/issues/835)) ([eb04c38](https://github.com/moyarenko/markdown/commit/eb04c38e0b944b26bc5e03cb63d8a2730586dc3d))
* adding support for highlighting OCaml and R languages ([#151](https://github.com/moyarenko/markdown/issues/151)) ([b901605](https://github.com/moyarenko/markdown/commit/b90160520a74f624faedf780d5bea6df583aa180))
* adding support for more string formats ([#381](https://github.com/moyarenko/markdown/issues/381)) ([da9c5a2](https://github.com/moyarenko/markdown/commit/da9c5a2d415842b65aa9da680fb1b61312a76536))
* Adding support for multiple media types ([#312](https://github.com/moyarenko/markdown/issues/312)) ([6ac7b67](https://github.com/moyarenko/markdown/commit/6ac7b67dd279c2c3e1652c24cff5b4a27dc2a5b7))
* addition of a new "node-simple" client language for our api sdk module ([#792](https://github.com/moyarenko/markdown/issues/792)) ([8f53c87](https://github.com/moyarenko/markdown/commit/8f53c871fe409a57ad14a4b7263855eeeb92846e))
* **markdown:** adjust lightbox img width ([#645](https://github.com/moyarenko/markdown/issues/645)) ([a016b88](https://github.com/moyarenko/markdown/commit/a016b88ee47a44e7f891efa7762dbaabcd7d76a0))
* adopt variable ([#200](https://github.com/moyarenko/markdown/issues/200)) ([947e31e](https://github.com/moyarenko/markdown/commit/947e31e08e02fe4d82c628ebd5bf3dd268ff3471))
* allow disabling tokenizers ([#119](https://github.com/moyarenko/markdown/issues/119)) ([0418a05](https://github.com/moyarenko/markdown/commit/0418a0543e0b15a00b51c0de38180c9de2f2b5fe))
* allow download attr in a-tags ([#39](https://github.com/moyarenko/markdown/issues/39)) ([87d8099](https://github.com/moyarenko/markdown/commit/87d8099e77095ce2aabe3a8c94c5da44d0b5a2a7))
* allow nesting callouts ([#601](https://github.com/moyarenko/markdown/issues/601)) ([e624b9a](https://github.com/moyarenko/markdown/commit/e624b9a18de59e570e15b5f899de71af06d77d4e))
* always use ATX format for headers ([#571](https://github.com/moyarenko/markdown/issues/571)) ([270e86f](https://github.com/moyarenko/markdown/commit/270e86f50e93746561f97e3702ec52de5d23bd4c))
* App selections should update current auth states ([#220](https://github.com/moyarenko/markdown/issues/220)) ([c97ff83](https://github.com/moyarenko/markdown/commit/c97ff8392c8a901b94766aef31382502804b7356))
* autoregister custom component tags and attrs ([#342](https://github.com/moyarenko/markdown/issues/342)) ([e58309a](https://github.com/moyarenko/markdown/commit/e58309aa27aebd6fccfc73a32e0f25daa7167aa9))
* compile custom magic blocks ([#399](https://github.com/moyarenko/markdown/issues/399)) ([d62229a](https://github.com/moyarenko/markdown/commit/d62229a6f12a6280ec4e313e22cdb1802b49796a))
* creating a new http-status-codes package ([#519](https://github.com/moyarenko/markdown/issues/519)) ([4f29c2b](https://github.com/moyarenko/markdown/commit/4f29c2bb65c5c9ae3a535d06d0fa6a1d9b705736))
* **glossary:** dark mode ([#599](https://github.com/moyarenko/markdown/issues/599)) ([6d9e7eb](https://github.com/moyarenko/markdown/commit/6d9e7eb92ee958bd9db1e88bfbb316adf6efd3bd))
* decoupling OAS code snippet generation into a standalone package ([#812](https://github.com/moyarenko/markdown/issues/812)) ([8fbe211](https://github.com/moyarenko/markdown/commit/8fbe21101dbde115e36d94506f810d91576ed33c))
* don't render style in safeMode ([#525](https://github.com/moyarenko/markdown/issues/525)) ([8a68880](https://github.com/moyarenko/markdown/commit/8a6888017fdbcfe125353718773b5449952796bd))
* ensure bordered images are rendered via a magic block ([#579](https://github.com/moyarenko/markdown/issues/579)) ([c3fb6f2](https://github.com/moyarenko/markdown/commit/c3fb6f299dde6619dea8e789042f746242d486af))
* error codes are now unique to the error message they're for ([#542](https://github.com/moyarenko/markdown/issues/542)) ([8e6d4c1](https://github.com/moyarenko/markdown/commit/8e6d4c11f74d7d101f902a24d8b517c266a6df20))
* export callout icons ([#219](https://github.com/moyarenko/markdown/issues/219)) ([7391b14](https://github.com/moyarenko/markdown/commit/7391b143d4ae889556e4be0d7c78650049c143ba))
* export components ([#218](https://github.com/moyarenko/markdown/issues/218)) ([4f888f6](https://github.com/moyarenko/markdown/commit/4f888f6a4e0db2429b30652b32efceb2a6139fae))
* expose the core setup method ([#51](https://github.com/moyarenko/markdown/issues/51)) ([3e85a53](https://github.com/moyarenko/markdown/commit/3e85a539d99eb86ff1dea3ea050eb2b5add9aa74))
* Extracting oas-to-har into @readme/oas-to-har ([#376](https://github.com/moyarenko/markdown/issues/376)) ([cd7dba3](https://github.com/moyarenko/markdown/commit/cd7dba3ad76e181b7df05932fdb917f7e4e24436))
* fix glossary term overflow in tables ([#108](https://github.com/moyarenko/markdown/issues/108)) ([52e8d9e](https://github.com/moyarenko/markdown/commit/52e8d9efddcfdd205c17be6fdbd62c70f6b31fe5))
* **rdmd/callout:** fix icon alignment ([#853](https://github.com/moyarenko/markdown/issues/853)) ([7ee7b5f](https://github.com/moyarenko/markdown/commit/7ee7b5f472c6b0248e4fb9745631b18e8e2cbb59))
* **rdmd:** fix link text-decoration ([#826](https://github.com/moyarenko/markdown/issues/826)) ([e080e92](https://github.com/moyarenko/markdown/commit/e080e9258ac59ac0c5c6632b232a2c9193aa7f40))
* fix plain string compiler ([#532](https://github.com/moyarenko/markdown/issues/532)) ([278d5ed](https://github.com/moyarenko/markdown/commit/278d5ed3e31b58799c46852d98c7d03e248df053))
* fixing some ssr issues with the markdown renderer  ([#705](https://github.com/moyarenko/markdown/issues/705)) ([52690a0](https://github.com/moyarenko/markdown/commit/52690a0dd7f174ef07cbfcf1c73edf768d9dea73))
* **tables:** hide empty table header rows ([#99](https://github.com/moyarenko/markdown/issues/99)) ([8b6d24b](https://github.com/moyarenko/markdown/commit/8b6d24bf3b1cebfce19b161bb669e504bddf083d))
* html block ([#609](https://github.com/moyarenko/markdown/issues/609)) ([6e9d8db](https://github.com/moyarenko/markdown/commit/6e9d8db0d901f131206f3ac23400bfd844e0836c))
* implement markdown/html in excerpt([#161](https://github.com/moyarenko/markdown/issues/161)) ([aee9d82](https://github.com/moyarenko/markdown/commit/aee9d82400db9a8f61110f44dffb3a1e501797af))
* implementing @readme/http-status-codes in the API Explorer ([#521](https://github.com/moyarenko/markdown/issues/521)) ([b04c980](https://github.com/moyarenko/markdown/commit/b04c980818f7844442ebe9d21ef3f3b2cd4eb01f))
* importing @readme/emojis in the markdown processor ([#473](https://github.com/moyarenko/markdown/issues/473)) ([ae1652e](https://github.com/moyarenko/markdown/commit/ae1652e4aa32b1c7d5c40ef8d598e2c3e341dd8a))
* improved har generation ([#689](https://github.com/moyarenko/markdown/issues/689)) ([2e6ac2e](https://github.com/moyarenko/markdown/commit/2e6ac2ec2dd29acd03cd9154c51f457218752d57))
* incrementing version ([7639794](https://github.com/moyarenko/markdown/commit/76397941cb4c454844961fd9fe0402e8067dbd75))
* initial implementation ([bbb5a12](https://github.com/moyarenko/markdown/commit/bbb5a12dc868f7dc3c8a889725e8139f90c6cf77))
* introducing enforcement on commit messages ([#703](https://github.com/moyarenko/markdown/issues/703)) ([7dba727](https://github.com/moyarenko/markdown/commit/7dba727bd2ea9b36af8d36e925ee9faf792d5d66))
* less lossy md() ([#377](https://github.com/moyarenko/markdown/issues/377)) ([4189554](https://github.com/moyarenko/markdown/commit/4189554e6f332ca396c6095ad3f028f567c7c2f3))
* **logs:** match null state to logged-out designs ([#833](https://github.com/moyarenko/markdown/issues/833)) ([9a6a8da](https://github.com/moyarenko/markdown/commit/9a6a8dafb3a2b767016cb15720d079c56b8ab4aa))
* **anchor:** menu item styling for doc links ([#589](https://github.com/moyarenko/markdown/issues/589)) ([31dbf68](https://github.com/moyarenko/markdown/commit/31dbf684832cf204eb952b50a2e59d60152975e5))
* more compiler updates ([#383](https://github.com/moyarenko/markdown/issues/383)) ([313e905](https://github.com/moyarenko/markdown/commit/313e9056e8eb114bc556bc50c163ebafaa6f1bcc))
* nested ast processing ([#679](https://github.com/moyarenko/markdown/issues/679)) ([67066b8](https://github.com/moyarenko/markdown/commit/67066b8fed325d47d29bcd68636df2152023ff83))
* new markdown engine ([#458](https://github.com/moyarenko/markdown/issues/458)) ([864b64b](https://github.com/moyarenko/markdown/commit/864b64b646ae505c8e527ddf42518a589d28dd87)), closes [#306](https://github.com/moyarenko/markdown/issues/306) [#398](https://github.com/moyarenko/markdown/issues/398) [#435](https://github.com/moyarenko/markdown/issues/435) [#404](https://github.com/moyarenko/markdown/issues/404) [#405](https://github.com/moyarenko/markdown/issues/405) [#406](https://github.com/moyarenko/markdown/issues/406) [#407](https://github.com/moyarenko/markdown/issues/407) [#413](https://github.com/moyarenko/markdown/issues/413) [#416](https://github.com/moyarenko/markdown/issues/416) [#410](https://github.com/moyarenko/markdown/issues/410) [#415](https://github.com/moyarenko/markdown/issues/415) [#408](https://github.com/moyarenko/markdown/issues/408) [#409](https://github.com/moyarenko/markdown/issues/409) [#417](https://github.com/moyarenko/markdown/issues/417) [#411](https://github.com/moyarenko/markdown/issues/411) [#412](https://github.com/moyarenko/markdown/issues/412) [#414](https://github.com/moyarenko/markdown/issues/414) [#424](https://github.com/moyarenko/markdown/issues/424) [#428](https://github.com/moyarenko/markdown/issues/428) [#425](https://github.com/moyarenko/markdown/issues/425) [#418](https://github.com/moyarenko/markdown/issues/418) [#419](https://github.com/moyarenko/markdown/issues/419) [#421](https://github.com/moyarenko/markdown/issues/421) [#422](https://github.com/moyarenko/markdown/issues/422) [#423](https://github.com/moyarenko/markdown/issues/423) [#426](https://github.com/moyarenko/markdown/issues/426) [#427](https://github.com/moyarenko/markdown/issues/427) [#429](https://github.com/moyarenko/markdown/issues/429) [#430](https://github.com/moyarenko/markdown/issues/430) [#432](https://github.com/moyarenko/markdown/issues/432) [#431](https://github.com/moyarenko/markdown/issues/431) [#434](https://github.com/moyarenko/markdown/issues/434) [/github.com/facebook/jest/issues/9396#issuecomment-573328488](https://github.com/moyarenko//github.com/facebook/jest/issues/9396/issues/issuecomment-573328488) [#508](https://github.com/moyarenko/markdown/issues/508) [#515](https://github.com/moyarenko/markdown/issues/515) [#516](https://github.com/moyarenko/markdown/issues/516)
* **demo:** polish sticky scrolling ([#523](https://github.com/moyarenko/markdown/issues/523)) ([3c6c2e6](https://github.com/moyarenko/markdown/commit/3c6c2e623e993ba7d8a2ff950ed12435040d0f6d))
* promote the markdown engine into a dedicated repo ([#12](https://github.com/moyarenko/markdown/issues/12)) ([6093851](https://github.com/moyarenko/markdown/commit/6093851f26007da7a5775e381027773e948db644))
* prompt to log into docs for hubs with logs ([#683](https://github.com/moyarenko/markdown/issues/683)) ([84027ec](https://github.com/moyarenko/markdown/commit/84027ecaba55ff8e372c5a4a34b49e23eb3d5271)), closes [/github.com/readmeio/api-explorer/pull/683#discussion_r421133565](https://github.com/moyarenko//github.com/readmeio/api-explorer/pull/683/issues/discussion_r421133565)
* **markdown:** pull CSS from readme ([#650](https://github.com/moyarenko/markdown/issues/650)) ([bd3d0d3](https://github.com/moyarenko/markdown/commit/bd3d0d39ddb4688bfd4ac59bbf7134bd72bbbf4f)), closes [#647](https://github.com/moyarenko/markdown/issues/647)
* refer to new pointers for log ([#407](https://github.com/moyarenko/markdown/issues/407)) ([193b38b](https://github.com/moyarenko/markdown/commit/193b38b17687f99a9df5f104638cdb7ed2dea36c))
* removing an eslint disable in the http-status-codes pkg ([3e35c56](https://github.com/moyarenko/markdown/commit/3e35c56c0822241ede00d5d452ebea88911a811b))
* save newlines with spaces ([#471](https://github.com/moyarenko/markdown/issues/471)) ([63649e7](https://github.com/moyarenko/markdown/commit/63649e73656f1e41c3c5ef7284ddad22d4831193))
* **markdown:** server-side rdmd bundle ([#767](https://github.com/moyarenko/markdown/issues/767)) ([4422341](https://github.com/moyarenko/markdown/commit/44223414eb14f4cfa46a10482c7207c2f801efed))
* setting a custom header for all "Try It" requests ([#471](https://github.com/moyarenko/markdown/issues/471)) ([663d82f](https://github.com/moyarenko/markdown/commit/663d82f09092b9fb35f6f43b464b171590a599f9))
* specify component-to-custom magic block mappings ([#60](https://github.com/moyarenko/markdown/issues/60)) ([460270b](https://github.com/moyarenko/markdown/commit/460270be16a2ca4709d57089b70a179d622daabf))
* splitting out our current markdown engine to a new package ([#514](https://github.com/moyarenko/markdown/issues/514)) ([087374d](https://github.com/moyarenko/markdown/commit/087374d2af9e2f1b0f1322507324979f7d9494b7))
* support for allOf and a host of small improvements and bug fixes ([#436](https://github.com/moyarenko/markdown/issues/436)) ([f1381d1](https://github.com/moyarenko/markdown/commit/f1381d16e06df1b49c25e7d6d66f2fdd436d9357)), closes [#517](https://github.com/moyarenko/markdown/issues/517)
* support multiple response types ([#208](https://github.com/moyarenko/markdown/issues/208)) ([d87cc3d](https://github.com/moyarenko/markdown/commit/d87cc3dc7be82a2d4e13b892f5318fd160728ca6))
* table of contents generator ([#43](https://github.com/moyarenko/markdown/issues/43)) ([056bea6](https://github.com/moyarenko/markdown/commit/056bea6d43ee3868f703fe76c3b74d521b2564da))
* throw when parsing invalid magic block json ([#563](https://github.com/moyarenko/markdown/issues/563)) ([72a59dc](https://github.com/moyarenko/markdown/commit/72a59dcc2790fb2721504e7ddee69042e03163c3))
* treat react and react-dom as external deps ([#90](https://github.com/moyarenko/markdown/issues/90)) ([7be16d7](https://github.com/moyarenko/markdown/commit/7be16d7a4de3ede54a3c46ef7cc5797a1a47888e))
* **release:** trigger build ([00b91cc](https://github.com/moyarenko/markdown/commit/00b91ccfac60004ab7d8d78515c67a1ffe8d1797))
* **release:** trigger build ([ff9e757](https://github.com/moyarenko/markdown/commit/ff9e757a8db1e2ad5ea4e3d095ecb09d06fb0f10))
* trigger release ([9549095](https://github.com/moyarenko/markdown/commit/9549095fc9c4587812bd482bf2d1f52b295e53ff))
* try using purecomponent for html ([#562](https://github.com/moyarenko/markdown/issues/562)) ([6f44d4b](https://github.com/moyarenko/markdown/commit/6f44d4b1cfe2ae2724ab425f08056a78c27138f4))
* Update Schema Form UI ([#228](https://github.com/moyarenko/markdown/issues/228)) ([162086c](https://github.com/moyarenko/markdown/commit/162086c04a7e0989ef2631f69e901a4581663618))
* updating dependabot to follow our commit standards ([a06d86d](https://github.com/moyarenko/markdown/commit/a06d86dd7193c79c4f7cf496e3fe9b9ddcef5ad7))
* updating our callout emoji regex to use `emoji-regex` ([#536](https://github.com/moyarenko/markdown/issues/536)) ([87fdde2](https://github.com/moyarenko/markdown/commit/87fdde2fe48d958694308e0b7facec18a7e6219e))
* Upgrade to Webpack 4 ([#270](https://github.com/moyarenko/markdown/issues/270)) ([27efa37](https://github.com/moyarenko/markdown/commit/27efa379b4963af2648cba0ba9df7786735c2035))
* upgrading @readme/react-jsonschema-form to v1.2.0 ([#852](https://github.com/moyarenko/markdown/issues/852)) ([4e37271](https://github.com/moyarenko/markdown/commit/4e3727163371753c69088181c3702f01da3518b3))
* upgrading out of date deps ([#542](https://github.com/moyarenko/markdown/issues/542)) ([f8aae4f](https://github.com/moyarenko/markdown/commit/f8aae4f9a387974079e8d958917e936755b45820))
* upgrading prettier to 2.0 ([#546](https://github.com/moyarenko/markdown/issues/546)) ([e3582ec](https://github.com/moyarenko/markdown/commit/e3582ec0d742f6152a03ea730ac12adcba1370e3))
* upgrading syntax-highlighter to support Lua and Solidity ([#391](https://github.com/moyarenko/markdown/issues/391)) ([3466ece](https://github.com/moyarenko/markdown/commit/3466ecefc97405a3e2ebe953a1d754f4eb8be6b2))
* **glossary-item:** use react-tippy to control tooltips ([#553](https://github.com/moyarenko/markdown/issues/553)) ([0302473](https://github.com/moyarenko/markdown/commit/03024739dd439ebac3ffc45b35c073d80eb576c4))
* validate oas on preview ([#721](https://github.com/moyarenko/markdown/issues/721)) ([4e6df88](https://github.com/moyarenko/markdown/commit/4e6df886285b6dd30903c5a43c6e68e50d89f912))
* visual regression testing and dev server app ([#94](https://github.com/moyarenko/markdown/issues/94)) ([0774166](https://github.com/moyarenko/markdown/commit/07741663d0a603c7f178b63ebed6a81695e36ec2))

### 🛠 Fixes & Updates

* _actually_ publish releases to npm ([c6a8883](https://github.com/moyarenko/markdown/commit/c6a88835ebf4fd7a7ba7537ac932eaa03468404a))
* **deps:** [Security] Bump acorn from 6.4.0 to 6.4.1 ([#580](https://github.com/moyarenko/markdown/issues/580)) ([11a145b](https://github.com/moyarenko/markdown/commit/11a145b25734f826ad5a76cb7daea0e3368c93a5))
* **deps:** [Security] Bump handlebars from 4.1.2 to 4.5.3 ([#418](https://github.com/moyarenko/markdown/issues/418)) ([f06bfb2](https://github.com/moyarenko/markdown/commit/f06bfb25081ae368480428af5b5270f348289f5b))
* <a href="javascript:alert('eek')">oops?</a> ([f3b7bc7](https://github.com/moyarenko/markdown/commit/f3b7bc7d986e0fbf82a4b6d68707250434161d9a))
* 🐛 create normalize as an option ([#559](https://github.com/moyarenko/markdown/issues/559)) ([af577ba](https://github.com/moyarenko/markdown/commit/af577ba458a4517d17faf5cea4e63dbcdd0dd77a))
* **recipes:** add 'slug' to whitelist ([#118](https://github.com/moyarenko/markdown/issues/118)) ([03d966a](https://github.com/moyarenko/markdown/commit/03d966a86b0a271525ee52f6ab28cd288796997d))
* add alt text option for images ([#535](https://github.com/moyarenko/markdown/issues/535)) ([4d7876b](https://github.com/moyarenko/markdown/commit/4d7876b3bac9013626feef69bad4c879ad73565d))
* **heading:** add aria-label to anchors ([#230](https://github.com/moyarenko/markdown/issues/230)) ([1df0220](https://github.com/moyarenko/markdown/commit/1df0220e4995ecd64c93d2a0fe155d6ec9f956e2))
* add back padding to lists in callouts ([#126](https://github.com/moyarenko/markdown/issues/126)) ([184c238](https://github.com/moyarenko/markdown/commit/184c2389acd48ef19eceee1d2e23402fddbfe235))
* add back support for certain ranges of emoji ([#279](https://github.com/moyarenko/markdown/issues/279)) ([163863f](https://github.com/moyarenko/markdown/commit/163863f9d6d99009f1c6f1f1d08ef6f81bda3ab2))
* add codemirror as exp dep ([#82](https://github.com/moyarenko/markdown/issues/82)) ([5a3aa52](https://github.com/moyarenko/markdown/commit/5a3aa520627dc7aa4c0413ce25be24849897e86b))
* **gemoji:** add compiler for font-awesome emojis ([#461](https://github.com/moyarenko/markdown/issues/461)) ([36f0b9d](https://github.com/moyarenko/markdown/commit/36f0b9d38a3e32cd8a77e0f7dd33e113de54f2a7))
* **SEO:** add href to TOC ([#447](https://github.com/moyarenko/markdown/issues/447)) ([06a463e](https://github.com/moyarenko/markdown/commit/06a463e540c94b4a250be9238ea0ee2de245e74a))
* **seo:** add href to TOC ([#455](https://github.com/moyarenko/markdown/issues/455)) ([a99f57f](https://github.com/moyarenko/markdown/commit/a99f57f926fdcdfc9791a6904794939d18194344))
* **markdown:** add missing compilers ([#808](https://github.com/moyarenko/markdown/issues/808)) ([3a6e720](https://github.com/moyarenko/markdown/commit/3a6e720a77d7cbba6dcf9a98c439953875041aa2)), closes [#772](https://github.com/moyarenko/markdown/issues/772)
* **code:** add test for indented code blocks ([#79](https://github.com/moyarenko/markdown/issues/79)) ([bd3e8e5](https://github.com/moyarenko/markdown/commit/bd3e8e53ae74799c1e1fe603b30f80adc196cde3)), closes [#70](https://github.com/moyarenko/markdown/issues/70)
* add variables and glossary items to TOC ([#115](https://github.com/moyarenko/markdown/issues/115)) ([94e505d](https://github.com/moyarenko/markdown/commit/94e505d7399523e9083d47d9ef4ed2750df954aa))
* adding __tests__ and coverage/ into the ignore for markdown-magic ([72ad2a6](https://github.com/moyarenko/markdown/commit/72ad2a6c7a76396974c528f0727c861f6f46d8ec))
* adding .jsinspectrc to the http-status-codes npmignore file ([9d3f91e](https://github.com/moyarenko/markdown/commit/9d3f91ee2d9f376ce96e6453913fde5df4ab99c3))
* Adding a `format: password` string example to our types def ([8c592d7](https://github.com/moyarenko/markdown/commit/8c592d70fe060abab5974c7bffc478c930f3f44c))
* adding an object in query param example ([8059798](https://github.com/moyarenko/markdown/commit/80597988388592b0a9e386f095eeb60ee4765a96))
* adding in support for handling legacy manual api multi-examples ([#479](https://github.com/moyarenko/markdown/issues/479)) ([3701f6c](https://github.com/moyarenko/markdown/commit/3701f6ccbf9d1e1f5475bb41fa0204a893d31338))
* adding support for handling requestBody if its in a $ref ([#847](https://github.com/moyarenko/markdown/issues/847)) ([7f80255](https://github.com/moyarenko/markdown/commit/7f802556d67abc37dfd638b967603308769f6d80))
* adding the coverage/ directory into npmignore ([693ce1b](https://github.com/moyarenko/markdown/commit/693ce1bf9d5f164241cc9fed54ad1e6cd75a202a))
* Adopting @readme/eslint-config across every package ([#379](https://github.com/moyarenko/markdown/issues/379)) ([f2d9027](https://github.com/moyarenko/markdown/commit/f2d9027a056d7fce8aa05e1497a9c6df308724d9))
* align params to top ([#431](https://github.com/moyarenko/markdown/issues/431)) ([8bcd03c](https://github.com/moyarenko/markdown/commit/8bcd03c8b67750365e4a558ed6eb470060836497))
* allow "compact" callouts ([#611](https://github.com/moyarenko/markdown/issues/611)) ([b56d2fc](https://github.com/moyarenko/markdown/commit/b56d2fcf854de69713897e9791fccedf2b287b52))
* allow disabling per tokenizer ([#136](https://github.com/moyarenko/markdown/issues/136)) ([9bdd6e7](https://github.com/moyarenko/markdown/commit/9bdd6e7b035ec56a96014f6163ff843734fc66d8))
* allow indented code on first line ([#362](https://github.com/moyarenko/markdown/issues/362)) ([2b55c09](https://github.com/moyarenko/markdown/commit/2b55c092e669ddf1488c792748f9c9775742e97d))
* allow to pass non-undefined values([#149](https://github.com/moyarenko/markdown/issues/149)) ([b70fb90](https://github.com/moyarenko/markdown/commit/b70fb90e1e59a3a31c86f5f9f8af67ad18dd3637))
* allow undefined code children ([#390](https://github.com/moyarenko/markdown/issues/390)) ([27c30f6](https://github.com/moyarenko/markdown/commit/27c30f6ac03830d9b500bbfc0690963749261c5e))
* always build for production ([b15724d](https://github.com/moyarenko/markdown/commit/b15724df16e6bc2548e79f377f30365086b244e0))
* anchor processing ([#605](https://github.com/moyarenko/markdown/issues/605)) ([98b482e](https://github.com/moyarenko/markdown/commit/98b482e85aaf922daaf40ecc394b27dba8c3e316))
* API righthand sidebar styling (again) ([#591](https://github.com/moyarenko/markdown/issues/591)) ([f870549](https://github.com/moyarenko/markdown/commit/f8705494df1c7e56914758db4bafcfe625189911))
* astToPlainText with lone image ([#561](https://github.com/moyarenko/markdown/issues/561)) ([477322a](https://github.com/moyarenko/markdown/commit/477322acfd54a03ad785edb6dcf01577d8665fa9))
* attaching my name to workflow dep updates ([193755f](https://github.com/moyarenko/markdown/commit/193755fcd9d231984bc2afa6f2eca12ce52f940d))
* auto-deploy changes to Heroku (markdown-demo) ([#484](https://github.com/moyarenko/markdown/issues/484)) ([e425040](https://github.com/moyarenko/markdown/commit/e4250404960f2e5b381c0aa57d3dc5ced52b652a))
* auto-open review apps on Heroku ([#494](https://github.com/moyarenko/markdown/issues/494)) ([427c917](https://github.com/moyarenko/markdown/commit/427c917ec714409259aa94e9899e0437546efa02))
* avoid nesting button in code block ([#587](https://github.com/moyarenko/markdown/issues/587)) ([a9a5d5d](https://github.com/moyarenko/markdown/commit/a9a5d5ded76bcc3ceb23147747342462bad19630))
* Backport support for multi media types to legacy Manual APIs ([#346](https://github.com/moyarenko/markdown/issues/346)) ([45f728e](https://github.com/moyarenko/markdown/commit/45f728eea4120e52eae0f7a06859ce801a1784e9))
* broken api log url ([#460](https://github.com/moyarenko/markdown/issues/460)) ([503154d](https://github.com/moyarenko/markdown/commit/503154dc9cfc6665a1aae6564c8d67f36bf1c69b))
* bug where responses with multiple examples weren't rendered properly ([#599](https://github.com/moyarenko/markdown/issues/599)) ([ef18f54](https://github.com/moyarenko/markdown/commit/ef18f54ae69b2f4d5fc2e06a7175e57b298bce69))
* **deps:** bump [@readme](https://github.com/readme) packages ([#98](https://github.com/moyarenko/markdown/issues/98)) ([8f54042](https://github.com/moyarenko/markdown/commit/8f5404280f628a934c5397bfbf0420861133be54))
* **deps-dev:** bump @babel/core from 7.11.0 to 7.12.9 ([2234951](https://github.com/moyarenko/markdown/commit/2234951bf5c4fdaf94ea14b798f5f80b19d8c736))
* **deps-dev:** bump @babel/core from 7.12.13 to 7.14.6 ([#169](https://github.com/moyarenko/markdown/issues/169)) ([8666a71](https://github.com/moyarenko/markdown/commit/8666a7150fb937d3fb4c2146543cb63649b369e8))
* **deps-dev:** bump @babel/core from 7.6.4 to 7.7.2 ([#373](https://github.com/moyarenko/markdown/issues/373)) ([fa528cb](https://github.com/moyarenko/markdown/commit/fa528cbb50068390800a33a59d072ca91d54a4dc))
* Bump @babel/core from 7.7.2 to 7.7.4 ([#384](https://github.com/moyarenko/markdown/issues/384)) ([580f77e](https://github.com/moyarenko/markdown/commit/580f77eaf578038ff97e9a9f79ae1c43cadd3ac5))
* Bump @babel/core from 7.7.4 to 7.7.5 ([#399](https://github.com/moyarenko/markdown/issues/399)) ([a460110](https://github.com/moyarenko/markdown/commit/a460110cab1b7287d794af4745394513556b26fa))
* **deps-dev:** Bump @babel/core from 7.7.5 to 7.7.7 ([#422](https://github.com/moyarenko/markdown/issues/422)) ([2cbe0ab](https://github.com/moyarenko/markdown/commit/2cbe0ab993c2d2ed574330d7ddef6f1595b7dc14))
* **deps-dev:** Bump @babel/core from 7.7.7 to 7.8.0 ([#437](https://github.com/moyarenko/markdown/issues/437)) ([986189d](https://github.com/moyarenko/markdown/commit/986189d4e77dfd547cb627e8a024b620e06ed6ec))
* **deps-dev:** Bump @babel/core from 7.8.0 to 7.8.3 ([#454](https://github.com/moyarenko/markdown/issues/454)) ([0cd1d23](https://github.com/moyarenko/markdown/commit/0cd1d230b623d5ff300d4cb9c18e57ed8b514a82))
* **deps-dev:** Bump @babel/core from 7.8.3 to 7.8.4 ([#467](https://github.com/moyarenko/markdown/issues/467)) ([00e49d0](https://github.com/moyarenko/markdown/commit/00e49d0027707496543c4e783621287c421bb553))
* **deps-dev:** Bump @babel/core from 7.8.4 to 7.8.6 ([#501](https://github.com/moyarenko/markdown/issues/501)) ([e7aa3f3](https://github.com/moyarenko/markdown/commit/e7aa3f3cc5c63258ba1209e639558ee19f15d975))
* **deps-dev:** Bump @babel/core from 7.8.6 to 7.8.7 ([#509](https://github.com/moyarenko/markdown/issues/509)) ([86192fd](https://github.com/moyarenko/markdown/commit/86192fd2bc8c9fa9f1bee290879e4fa88ab92df4))
* **deps-dev:** Bump @babel/core from 7.8.7 to 7.9.0 ([#556](https://github.com/moyarenko/markdown/issues/556)) ([a4d6f8c](https://github.com/moyarenko/markdown/commit/a4d6f8c2b34b510b28e0817d73fb26ef4d569797))
* **deps-dev:** Bump @babel/core from 7.9.0 to 7.9.6 ([#677](https://github.com/moyarenko/markdown/issues/677)) ([8d277ac](https://github.com/moyarenko/markdown/commit/8d277acc4f326a1ba468f1811ef8e26db51b743d))
* **deps-dev:** bump @babel/plugin-proposal-class-properties ([#811](https://github.com/moyarenko/markdown/issues/811)) ([a791fd5](https://github.com/moyarenko/markdown/commit/a791fd5891c592990de2d286ca8b9951e2c0ed38))
* **deps-dev:** bump @babel/plugin-proposal-object-rest-spread ([#190](https://github.com/moyarenko/markdown/issues/190)) ([0599876](https://github.com/moyarenko/markdown/commit/0599876805f645bf9cc129c1eed28db27915328f))
* **deps-dev:** Bump @babel/plugin-proposal-object-rest-spread ([#553](https://github.com/moyarenko/markdown/issues/553)) ([eb21c31](https://github.com/moyarenko/markdown/commit/eb21c317636a6622aabb6a25f1e9d98ad9b7606e))
* **deps-dev:** Bump @babel/plugin-proposal-object-rest-spread ([#609](https://github.com/moyarenko/markdown/issues/609)) ([6f98e42](https://github.com/moyarenko/markdown/commit/6f98e42d5fe3eb1da2aefc03346f283a582ac6f7))
* **deps-dev:** Bump @babel/plugin-proposal-object-rest-spread ([#707](https://github.com/moyarenko/markdown/issues/707)) ([728689f](https://github.com/moyarenko/markdown/commit/728689fa039cfbbdeb9faae9833f2f79d8bd9002))
* **deps-dev:** bump @babel/preset-env from 7.12.13 to 7.14.7 ([#197](https://github.com/moyarenko/markdown/issues/197)) ([0eb0e19](https://github.com/moyarenko/markdown/commit/0eb0e19b1761fd225d28e6f4ca62ab72b647b4e0))
* **deps-dev:** bump @babel/preset-env from 7.6.3 to 7.7.1 ([#369](https://github.com/moyarenko/markdown/issues/369)) ([f04a680](https://github.com/moyarenko/markdown/commit/f04a68069cda6b14069b6065df6c5ff1d4c531c9))
* Bump @babel/preset-env from 7.7.1 to 7.7.4 ([#383](https://github.com/moyarenko/markdown/issues/383)) ([400a917](https://github.com/moyarenko/markdown/commit/400a917ef0b7765d5964cbd0abc7d8afa92ea754))
* Bump @babel/preset-env from 7.7.4 to 7.7.6 ([#400](https://github.com/moyarenko/markdown/issues/400)) ([3261792](https://github.com/moyarenko/markdown/commit/32617922b0495eeee93fad7738fd62fe779a5b6d))
* Bump @babel/preset-env from 7.7.6 to 7.7.7 ([#413](https://github.com/moyarenko/markdown/issues/413)) ([82ca75c](https://github.com/moyarenko/markdown/commit/82ca75c626dd7454d17d7509187436ee59abffbd))
* **deps-dev:** Bump @babel/preset-env from 7.7.7 to 7.8.3 ([#449](https://github.com/moyarenko/markdown/issues/449)) ([c105f56](https://github.com/moyarenko/markdown/commit/c105f569db1930c446a8de526986748b877bc366))
* **deps-dev:** Bump @babel/preset-env from 7.8.3 to 7.8.4 ([#465](https://github.com/moyarenko/markdown/issues/465)) ([b29a26d](https://github.com/moyarenko/markdown/commit/b29a26d9d66ca70c1b4d69ad583a4872ee4af265))
* **deps-dev:** Bump @babel/preset-env from 7.8.4 to 7.8.6 ([#504](https://github.com/moyarenko/markdown/issues/504)) ([54f23d2](https://github.com/moyarenko/markdown/commit/54f23d2b5a563b89ba99f1295e5a64ad29f4ff1b))
* **deps-dev:** Bump @babel/preset-env from 7.8.6 to 7.8.7 ([#511](https://github.com/moyarenko/markdown/issues/511)) ([d2c4a8e](https://github.com/moyarenko/markdown/commit/d2c4a8e948e8894120f3c5513c2c1a3363f425f9))
* **deps-dev:** Bump @babel/preset-env from 7.8.7 to 7.9.0 ([#555](https://github.com/moyarenko/markdown/issues/555)) ([4a742ad](https://github.com/moyarenko/markdown/commit/4a742adcbb3027ef079fce569b75003651e303be))
* **deps-dev:** Bump @babel/preset-env from 7.9.0 to 7.9.5 ([#593](https://github.com/moyarenko/markdown/issues/593)) ([c40a910](https://github.com/moyarenko/markdown/commit/c40a910cd25edc192c972ce8b020600a467f701e))
* **deps-dev:** Bump @babel/preset-env from 7.9.5 to 7.9.6 ([#676](https://github.com/moyarenko/markdown/issues/676)) ([8e507de](https://github.com/moyarenko/markdown/commit/8e507de24980882e3a0db54d1c164c4f4d62edd2))
* **deps-dev:** bump @babel/preset-react from 7.6.3 to 7.7.0 ([#370](https://github.com/moyarenko/markdown/issues/370)) ([fc7fff7](https://github.com/moyarenko/markdown/commit/fc7fff7c51bc7f5afce66801aa3a523afe236809))
* Bump @babel/preset-react from 7.7.0 to 7.7.4 ([#389](https://github.com/moyarenko/markdown/issues/389)) ([c0c4988](https://github.com/moyarenko/markdown/commit/c0c49883d482e2cd2c93723e49a2202156c67eb7))
* **deps-dev:** Bump @babel/preset-react from 7.7.4 to 7.8.0 ([#443](https://github.com/moyarenko/markdown/issues/443)) ([f288246](https://github.com/moyarenko/markdown/commit/f28824672ee498fbcfa63f8ed322122ee287fdd3))
* **deps-dev:** Bump @babel/preset-react from 7.8.0 to 7.8.3 ([#450](https://github.com/moyarenko/markdown/issues/450)) ([dc9cb32](https://github.com/moyarenko/markdown/commit/dc9cb32eeb91ca000066077043c6841b7e44deaa))
* **deps-dev:** Bump @babel/preset-react from 7.8.3 to 7.9.1 ([#552](https://github.com/moyarenko/markdown/issues/552)) ([80b44dc](https://github.com/moyarenko/markdown/commit/80b44dcca6b6bdc05be47b05a0175f3c8c9ba387))
* **deps-dev:** Bump @babel/preset-react from 7.9.1 to 7.9.4 ([#576](https://github.com/moyarenko/markdown/issues/576)) ([1f7f16f](https://github.com/moyarenko/markdown/commit/1f7f16f0fdfbf1f9ea90e46784ef61d86dc5138d))
* **deps-dev:** bump @commitlint/cli from 11.0.0 to 12.1.4 ([#182](https://github.com/moyarenko/markdown/issues/182)) ([50325ed](https://github.com/moyarenko/markdown/commit/50325edf4388832a9a55d57974b2dc6782c65761))
* **deps-dev:** bump @commitlint/config-angular from 11.0.0 to 12.1.4 ([#162](https://github.com/moyarenko/markdown/issues/162)) ([227c5ed](https://github.com/moyarenko/markdown/commit/227c5edbed986810953c8e19ec345c651f696ee9))
* **deps-dev:** bump @commitlint/config-conventional ([#195](https://github.com/moyarenko/markdown/issues/195)) ([43bc4b4](https://github.com/moyarenko/markdown/commit/43bc4b47db7e7b82d8c162e42011c23960b99078))
* **deps:** bump @readme/emojis from 4.0.0 to 4.0.1 ([#384](https://github.com/moyarenko/markdown/issues/384)) ([048ee9f](https://github.com/moyarenko/markdown/commit/048ee9f913f4dad7422fd3bb979b30d3b0b52aea))
* **deps-dev:** Bump @readme/eslint-config from 1.10.0 to 1.12.0 ([#478](https://github.com/moyarenko/markdown/issues/478)) ([f5a0244](https://github.com/moyarenko/markdown/commit/f5a0244fca612768627c12738693ae1e7d76b538))
* **deps-dev:** Bump @readme/eslint-config from 1.12.0 to 1.13.0 ([#489](https://github.com/moyarenko/markdown/issues/489)) ([85be6bd](https://github.com/moyarenko/markdown/commit/85be6bdf1dcb9b6acf8f750d4a1dfb99706311ae))
* **deps-dev:** Bump @readme/eslint-config from 1.13.0 to 1.14.0 ([#505](https://github.com/moyarenko/markdown/issues/505)) ([3060973](https://github.com/moyarenko/markdown/commit/3060973d5db3ce42875ce2ce427a9be3e826979d))
* **deps-dev:** Bump @readme/eslint-config from 1.14.0 to 1.16.0 ([#535](https://github.com/moyarenko/markdown/issues/535)) ([1abc64c](https://github.com/moyarenko/markdown/commit/1abc64c2f6199915024f25bdc38fa4e33bef03b5))
* Bump @readme/eslint-config from 1.4.2 to 1.5.0 ([#385](https://github.com/moyarenko/markdown/issues/385)) ([deae3ad](https://github.com/moyarenko/markdown/commit/deae3adc33a4328d6de9a7b509b2a06413eb76f2))
* Bump @readme/eslint-config from 1.7.0 to 1.8.0 ([#406](https://github.com/moyarenko/markdown/issues/406)) ([dd34213](https://github.com/moyarenko/markdown/commit/dd3421349f750ec6aff3a3d4ef726ade6e427bc9))
* **deps-dev:** Bump @readme/eslint-config from 1.8.0 to 1.8.1 ([#416](https://github.com/moyarenko/markdown/issues/416)) ([2564103](https://github.com/moyarenko/markdown/commit/2564103f921f17a3ea5d9c0f63efef814994035b))
* **deps-dev:** Bump @readme/eslint-config from 1.8.1 to 1.9.0 ([#424](https://github.com/moyarenko/markdown/issues/424)) ([ef98735](https://github.com/moyarenko/markdown/commit/ef98735e11a4d050f3a9b9700c580d5fe841f4c2))
* **deps-dev:** Bump @readme/eslint-config from 1.9.0 to 1.9.1 ([#445](https://github.com/moyarenko/markdown/issues/445)) ([906ff84](https://github.com/moyarenko/markdown/commit/906ff842061326a980e017b1e4ee2acffe3d7673))
* **deps-dev:** Bump @readme/eslint-config from 1.9.1 to 1.10.0 ([#448](https://github.com/moyarenko/markdown/issues/448)) ([2f1781b](https://github.com/moyarenko/markdown/commit/2f1781b419a761f07d2724aa64a8d5111e146d6e))
* **deps-dev:** Bump @readme/eslint-config from 2.0.0 to 2.0.4 ([#610](https://github.com/moyarenko/markdown/issues/610)) ([abe119a](https://github.com/moyarenko/markdown/commit/abe119ab4e9cb9086ec1f6edff3c3b537b2c7324))
* **deps-dev:** bump @readme/eslint-config from 3.4.0 to 3.6.2 ([#64](https://github.com/moyarenko/markdown/issues/64)) ([ab61909](https://github.com/moyarenko/markdown/commit/ab61909f99504adca19995e21965a0222a60c20a))
* **deps-dev:** Bump @readme/oas-examples from 2.1.1 to 3.0.0 ([#531](https://github.com/moyarenko/markdown/issues/531)) ([b3568a6](https://github.com/moyarenko/markdown/commit/b3568a69c048900515df026c86e7441c7faf9de0))
* **deps-dev:** bump @readme/oas-examples from 3.0.0 to 3.4.0 ([#774](https://github.com/moyarenko/markdown/issues/774)) ([7e4e12d](https://github.com/moyarenko/markdown/commit/7e4e12d09790199572dc4692a53aee8754dec9ce))
* **deps-dev:** bump @readme/variable from 11.0.0 to 13.4.12 ([#188](https://github.com/moyarenko/markdown/issues/188)) ([16724d8](https://github.com/moyarenko/markdown/commit/16724d84940b5211716264577a080a5d95d7dbbe))
* **deps-dev:** bump @readme/variable from 13.5.4 to 13.6.0 ([#307](https://github.com/moyarenko/markdown/issues/307)) ([51da52a](https://github.com/moyarenko/markdown/commit/51da52aa3a241c6f927cde5c60bcd0186a1da1ba))
* **deps-dev:** bump @readme/variable to v10.0.7 ([d6006d6](https://github.com/moyarenko/markdown/commit/d6006d6867ad941dcc3cebb109cf9784aa22be57))
* **deps-dev:** bump @testing-library/react from 12.1.2 to 12.1.5 ([#504](https://github.com/moyarenko/markdown/issues/504)) ([a9ffb70](https://github.com/moyarenko/markdown/commit/a9ffb708ee4429710443bc9cd84ce0bcf0dfa954))
* **deps:** bump `rehype` plugins in @readme/markdown ([#540](https://github.com/moyarenko/markdown/issues/540)) ([2f9b998](https://github.com/moyarenko/markdown/commit/2f9b9982c921a81307373cee38ef88f62345d382))
* **deps:** bump actions/checkout from 2.3.4 to 3 ([#442](https://github.com/moyarenko/markdown/issues/442)) ([dd78e22](https://github.com/moyarenko/markdown/commit/dd78e2289e141e8b116c3bcbc163eb2676cab0db))
* **deps:** bump actions/checkout from v1 to v2.2.0 ([#780](https://github.com/moyarenko/markdown/issues/780)) ([e87fa1a](https://github.com/moyarenko/markdown/commit/e87fa1a7d9496d6f892bcd76e020d9296c2368c5))
* **deps:** bump actions/checkout from v2.2.0 to v2.3.1 ([#800](https://github.com/moyarenko/markdown/issues/800)) ([211417c](https://github.com/moyarenko/markdown/commit/211417cda6e9ef0a2114a759a2f640b0c5f0131f))
* **deps:** bump actions/setup-node from 2.1.2 to 2.2.0 ([#205](https://github.com/moyarenko/markdown/issues/205)) ([decc3bd](https://github.com/moyarenko/markdown/commit/decc3bdb24fd904777e7a96296539ff06a835b2f))
* **deps:** bump actions/setup-node from 2.2.0 to 2.3.0 ([#235](https://github.com/moyarenko/markdown/issues/235)) ([95e3a2b](https://github.com/moyarenko/markdown/commit/95e3a2b6599b49993df3106cbd20efb46d18e873))
* **deps:** bump actions/setup-node from 2.3.0 to 2.4.0 ([#251](https://github.com/moyarenko/markdown/issues/251)) ([c013b36](https://github.com/moyarenko/markdown/commit/c013b360570875390f44cfde458ece7a6d565c1a))
* **deps:** bump actions/setup-node from 2.4.0 to 3 ([#440](https://github.com/moyarenko/markdown/issues/440)) ([d134aab](https://github.com/moyarenko/markdown/commit/d134aab5447f34cb695bb513f47e1b34f1164442))
* **deps:** bump actions/setup-node from v1 to v2.0.0 ([#781](https://github.com/moyarenko/markdown/issues/781)) ([6c1e9bd](https://github.com/moyarenko/markdown/commit/6c1e9bd482e9da292de629fe49423f302170c661))
* **deps:** bump actions/setup-node from v2.0.0 to v2.1.0 ([#810](https://github.com/moyarenko/markdown/issues/810)) ([31d5a07](https://github.com/moyarenko/markdown/commit/31d5a07460976497627567bcc61ad7ad53742911))
* **deps:** bump actions/setup-node from v2.1.0 to v2.1.1 ([044c98b](https://github.com/moyarenko/markdown/commit/044c98bf57c9676e179b02a73f9f15318fa0040c))
* **deps:** Bump async-retry from 1.2.3 to 1.3.1 ([#438](https://github.com/moyarenko/markdown/issues/438)) ([575117a](https://github.com/moyarenko/markdown/commit/575117a73c3882214c68bd002e23a76635d781bf))
* **deps-dev:** Bump auto-changelog from 1.16.2 to 1.16.3 ([#573](https://github.com/moyarenko/markdown/issues/573)) ([a1426f9](https://github.com/moyarenko/markdown/commit/a1426f9693a8e44b424702abf11d62d9fda435f9))
* **deps-dev:** Bump auto-changelog from 1.16.3 to 1.16.4 ([#581](https://github.com/moyarenko/markdown/issues/581)) ([464d75b](https://github.com/moyarenko/markdown/commit/464d75b113782a8a270fa5b67586ac1cdf3ea954))
* **deps-dev:** Bump auto-changelog from 1.16.4 to 2.0.0 ([#692](https://github.com/moyarenko/markdown/issues/692)) ([b8aefee](https://github.com/moyarenko/markdown/commit/b8aefeecfeb2ce78e8b1520482360a5ff9be720c))
* **deps-dev:** bump auto-changelog from 2.0.0 to 2.1.0 ([#801](https://github.com/moyarenko/markdown/issues/801)) ([928d8c0](https://github.com/moyarenko/markdown/commit/928d8c07a10b81348eeca3e7cfc6082083977a87))
* **deps-dev:** Bump babel-eslint from 10.0.3 to 10.1.0 ([#502](https://github.com/moyarenko/markdown/issues/502)) ([3292167](https://github.com/moyarenko/markdown/commit/3292167fc772e584ca0a61ed33eb7d303d7962f6))
* **deps-dev:** Bump babel-jest from 24.9.0 to 25.1.0 ([#455](https://github.com/moyarenko/markdown/issues/455)) ([083ca1c](https://github.com/moyarenko/markdown/commit/083ca1c17aa95a76a56f11e1c4094dc2dfd19eae))
* **deps-dev:** Bump babel-jest from 25.1.0 to 25.2.4 ([#570](https://github.com/moyarenko/markdown/issues/570)) ([3edda2d](https://github.com/moyarenko/markdown/commit/3edda2d13579cce6ea3bc5b20f78f1ae139f81a6))
* **deps-dev:** Bump babel-jest from 25.2.4 to 25.2.6 ([#582](https://github.com/moyarenko/markdown/issues/582)) ([5a4e354](https://github.com/moyarenko/markdown/commit/5a4e3540996bc462b15b2d8de89fe0af9c73ada6))
* **deps-dev:** Bump babel-jest from 25.2.6 to 25.4.0 ([#615](https://github.com/moyarenko/markdown/issues/615)) ([532f8ad](https://github.com/moyarenko/markdown/commit/532f8adc0c4c9e12c59d95638d2745d8946e5932))
* **deps-dev:** bump babel-jest from 26.0.1 to 26.1.0 ([#814](https://github.com/moyarenko/markdown/issues/814)) ([bf4d56b](https://github.com/moyarenko/markdown/commit/bf4d56b3a0cb17c8abc193ba16e871a4c1235071))
* **deps-dev:** bump babel-jest from 26.6.3 to 27.0.5 ([#187](https://github.com/moyarenko/markdown/issues/187)) ([dd26212](https://github.com/moyarenko/markdown/commit/dd262123e9dc6af8147c1250907014b2d92d8054))
* **deps-dev:** Bump babel-loader from 8.0.6 to 8.1.0 ([#569](https://github.com/moyarenko/markdown/issues/569)) ([e006edc](https://github.com/moyarenko/markdown/commit/e006edcf0d6a15081119347d9afc4595dcd915de))
* **deps:** Bump codemirror from 5.49.2 to 5.50.0 ([#412](https://github.com/moyarenko/markdown/issues/412)) ([d7b1d61](https://github.com/moyarenko/markdown/commit/d7b1d613d521e2a86420ae79a3e29a9212edf4fc))
* **deps:** Bump codemirror from 5.50.0 to 5.50.2 ([#427](https://github.com/moyarenko/markdown/issues/427)) ([1722353](https://github.com/moyarenko/markdown/commit/172235355c3c6bbaefa8d9092b13084009cd629b))
* **deps:** Bump codemirror from 5.50.2 to 5.51.0 ([#456](https://github.com/moyarenko/markdown/issues/456)) ([46d2719](https://github.com/moyarenko/markdown/commit/46d27197e46440d2f4b97788131a32af617c462d))
* **deps:** Bump codemirror from 5.51.0 to 5.52.0 ([#492](https://github.com/moyarenko/markdown/issues/492)) ([2459950](https://github.com/moyarenko/markdown/commit/2459950710201f2dbb47ed124f0cabc1ddf53531))
* **deps:** Bump codemirror from 5.52.0 to 5.52.2 ([#549](https://github.com/moyarenko/markdown/issues/549)) ([b9d6576](https://github.com/moyarenko/markdown/commit/b9d657617d431e7b7bda25381b46ebda679afcbf))
* **deps:** Bump codemirror from 5.52.2 to 5.53.2 ([#635](https://github.com/moyarenko/markdown/issues/635)) ([aae6ae2](https://github.com/moyarenko/markdown/commit/aae6ae275892714028c74dd784b47c75cc331c13))
* **deps:** bump codemirror from 5.53.2 to 5.54.0 ([#788](https://github.com/moyarenko/markdown/issues/788)) ([eb44fac](https://github.com/moyarenko/markdown/commit/eb44fac090f1eff89167469c6b863ee969524479))
* **deps-dev:** bump codemirror from 5.59.2 to 5.62.0 ([#177](https://github.com/moyarenko/markdown/issues/177)) ([35eb916](https://github.com/moyarenko/markdown/commit/35eb9165940c818aa848f37bc6a1dd317968fded))
* **deps-dev:** bump core-js from 3.8.3 to 3.15.2 ([#201](https://github.com/moyarenko/markdown/issues/201)) ([6f8c953](https://github.com/moyarenko/markdown/commit/6f8c9536488ea7b030cae18480fef775c6037110))
* Bump css-loader from 3.2.0 to 3.2.1 ([#401](https://github.com/moyarenko/markdown/issues/401)) ([4a135ed](https://github.com/moyarenko/markdown/commit/4a135edbadbecdea7a6ea65340114ee7618e5bcd))
* Bump css-loader from 3.2.1 to 3.3.2 ([#405](https://github.com/moyarenko/markdown/issues/405)) ([f772c49](https://github.com/moyarenko/markdown/commit/f772c49f0fb37b375bdfe7c072832d0f424050b7))
* **deps:** Bump css-loader from 3.3.2 to 3.4.0 ([#411](https://github.com/moyarenko/markdown/issues/411)) ([3502e5c](https://github.com/moyarenko/markdown/commit/3502e5c01c1f165419f3fd2d10dea617443de878))
* **deps-dev:** Bump css-loader from 3.4.0 to 3.4.1 ([#426](https://github.com/moyarenko/markdown/issues/426)) ([710dd4a](https://github.com/moyarenko/markdown/commit/710dd4a98ce26dbfa5ba7acd7d5d102e57a06ea2))
* **deps-dev:** Bump css-loader from 3.4.1 to 3.4.2 ([#440](https://github.com/moyarenko/markdown/issues/440)) ([fbfcf51](https://github.com/moyarenko/markdown/commit/fbfcf51b552c01f3f0421c263ce14636ccdc203d))
* **deps-dev:** bump css-loader from 3.6.0 to 5.0.1 ([2849a7d](https://github.com/moyarenko/markdown/commit/2849a7dfd58603d842933cdf3c5834b610774a47))
* **deps-dev:** bump css-loader from 5.0.2 to 6.2.0 ([#229](https://github.com/moyarenko/markdown/issues/229)) ([325396b](https://github.com/moyarenko/markdown/commit/325396b299fd12bc03f5a763d938e12f6aefc1a7))
* **deps-dev:** Bump enzyme from 3.10.0 to 3.11.0 ([#408](https://github.com/moyarenko/markdown/issues/408)) ([9fa958c](https://github.com/moyarenko/markdown/commit/9fa958c1a655a2d509d7b255797143f5d725e333))
* **deps-dev:** Bump enzyme-adapter-react-16 from 1.15.1 to 1.15.2 ([#417](https://github.com/moyarenko/markdown/issues/417)) ([ea4f5cc](https://github.com/moyarenko/markdown/commit/ea4f5ccf93d40b17d934be952fb750c2f9e62503))
* Bump eslint from 6.6.0 to 6.7.1 ([#386](https://github.com/moyarenko/markdown/issues/386)) ([5340dde](https://github.com/moyarenko/markdown/commit/5340dde1830711e7fdd9ecb4c153a757a2e7069e))
* Bump eslint from 6.7.1 to 6.7.2 ([#395](https://github.com/moyarenko/markdown/issues/395)) ([6179015](https://github.com/moyarenko/markdown/commit/61790156133da41aaf317d55de0b9018018aef51))
* **deps-dev:** Bump eslint from 6.7.2 to 6.8.0 ([#410](https://github.com/moyarenko/markdown/issues/410)) ([7595b99](https://github.com/moyarenko/markdown/commit/7595b99c770f5a089be51d799c989ecd3fa0d444))
* **deps-dev:** Bump eslint from 7.0.0 to 7.1.0 ([#709](https://github.com/moyarenko/markdown/issues/709)) ([e1652e3](https://github.com/moyarenko/markdown/commit/e1652e304ee2b70980061469ab1d6f08c0a3867f))
* **deps-dev:** bump eslint from 7.1.0 to 7.2.0 ([#773](https://github.com/moyarenko/markdown/issues/773)) ([22e2eca](https://github.com/moyarenko/markdown/commit/22e2ecad068e8014debcc49e9944665478afc2af))
* **deps-dev:** bump eslint from 7.19.0 to 7.29.0 ([#184](https://github.com/moyarenko/markdown/issues/184)) ([7e032cf](https://github.com/moyarenko/markdown/commit/7e032cfc4b91ac9b0f43e0931ae770d8ff54fcbe))
* **deps-dev:** bump eslint from 7.2.0 to 7.3.1 ([#813](https://github.com/moyarenko/markdown/issues/813)) ([172d3a0](https://github.com/moyarenko/markdown/commit/172d3a0deb99c896b178d578e155307d03bf2419))
* **deps-dev:** bump eslint from 7.29.0 to 7.30.0 ([#209](https://github.com/moyarenko/markdown/issues/209)) ([5309d0e](https://github.com/moyarenko/markdown/commit/5309d0e2cc84e2eb6ad971d5d58ace789c1cedd3))
* **deps-dev:** bump eslint from 7.31.0 to 7.32.0 ([#248](https://github.com/moyarenko/markdown/issues/248)) ([76e5a79](https://github.com/moyarenko/markdown/commit/76e5a7970c729a1198fec21c97e6eaacbc81b6a5))
* Bump eslint-plugin-jest from 23.0.3 to 23.0.4 ([#391](https://github.com/moyarenko/markdown/issues/391)) ([d49a802](https://github.com/moyarenko/markdown/commit/d49a802f96b91343cb471cb1de133c4ae85b4d64))
* Bump eslint-plugin-jest from 23.0.4 to 23.1.1 ([#394](https://github.com/moyarenko/markdown/issues/394)) ([5565e38](https://github.com/moyarenko/markdown/commit/5565e3821a9f042af116f7c5aca2dbf0fee9ecd4))
* Bump eslint-plugin-react from 7.16.0 to 7.17.0 ([#392](https://github.com/moyarenko/markdown/issues/392)) ([da75860](https://github.com/moyarenko/markdown/commit/da758607cc37bb601fad1d60419164560c4b80db))
* Bump fetch-har from 2.0.0 to 2.1.0 ([#382](https://github.com/moyarenko/markdown/issues/382)) ([69b2e89](https://github.com/moyarenko/markdown/commit/69b2e890b573044cf3e90e5947b422317e1efc67))
* **deps:** Bump fetch-har from 2.2.1 to 2.3.0 ([#487](https://github.com/moyarenko/markdown/issues/487)) ([191782e](https://github.com/moyarenko/markdown/commit/191782e5515ad2ee6e5ac8f1c00b969fdaf09510))
* **deps:** Bump fetch-har from 2.3.0 to 2.3.1 ([#550](https://github.com/moyarenko/markdown/issues/550)) ([0489556](https://github.com/moyarenko/markdown/commit/0489556ba5fca405dbeaac15b6bd1b61ecdfd47d))
* **deps:** bump fetch-har from 2.3.1 to 2.3.2 ([#786](https://github.com/moyarenko/markdown/issues/786)) ([66bcfe9](https://github.com/moyarenko/markdown/commit/66bcfe996b171be266c35063952f5e8876094001))
* **deps-dev:** Bump gh-pages from 2.1.1 to 2.2.0 ([#442](https://github.com/moyarenko/markdown/issues/442)) ([80907f1](https://github.com/moyarenko/markdown/commit/80907f1da9e2b2768923495949a689a73282b416))
* **deps:** bump hast-util-sanitize from 2.0.3 to 4.0.0 ([#156](https://github.com/moyarenko/markdown/issues/156)) ([e5fda67](https://github.com/moyarenko/markdown/commit/e5fda673e975259b3b09a8260b93b52240c970d4))
* **deps:** bump httpsnippet from 1.19.1 to 1.20.0 ([#778](https://github.com/moyarenko/markdown/issues/778)) ([44ff101](https://github.com/moyarenko/markdown/commit/44ff101c69089157c8031eae6806508575f37897))
* **deps-dev:** bump husky from 4.3.8 to 7.0.1 ([#208](https://github.com/moyarenko/markdown/issues/208)) ([1f09f4a](https://github.com/moyarenko/markdown/commit/1f09f4ad0a308ac3b82e4663e59259baa73ee068))
* **deps-dev:** Bump jest from 24.9.0 to 25.1.0 ([#457](https://github.com/moyarenko/markdown/issues/457)) ([817de29](https://github.com/moyarenko/markdown/commit/817de295e03eb1103c653a19592c2ddf70b96dd8))
* **deps-dev:** Bump jest from 25.1.0 to 25.2.4 ([#571](https://github.com/moyarenko/markdown/issues/571)) ([67e29a2](https://github.com/moyarenko/markdown/commit/67e29a203459aa541c20c3918bfe32d505101c67))
* **deps-dev:** Bump jest from 25.2.4 to 25.3.0 ([#594](https://github.com/moyarenko/markdown/issues/594)) ([134d5e8](https://github.com/moyarenko/markdown/commit/134d5e819483d4a627a57aa0933a5aff249ed293))
* **deps-dev:** Bump jest from 25.3.0 to 25.4.0 ([#612](https://github.com/moyarenko/markdown/issues/612)) ([3c63767](https://github.com/moyarenko/markdown/commit/3c637679e63bee5b32f97e893400b3bc7c739b00))
* **deps-dev:** Bump jest from 25.4.0 to 26.0.1 ([#694](https://github.com/moyarenko/markdown/issues/694)) ([8c901c6](https://github.com/moyarenko/markdown/commit/8c901c68293b2d9243f604255d8342fe79f23674))
* **deps-dev:** bump jest from 26.0.1 to 26.1.0 ([#815](https://github.com/moyarenko/markdown/issues/815)) ([6afc047](https://github.com/moyarenko/markdown/commit/6afc04796d0466a0cd274b5799e2b8ecf7335e03))
* **deps-dev:** bump jest-image-snapshot from 4.3.0 to 4.5.1 ([#211](https://github.com/moyarenko/markdown/issues/211)) ([c31fd91](https://github.com/moyarenko/markdown/commit/c31fd916c0f89bf41bac00697d94a06b89f9f5f7))
* **deps-dev:** bump jest-image-snapshot to ^5.1.0 ([91243a5](https://github.com/moyarenko/markdown/commit/91243a52159212ce3ffe541fb38bbc02240475e9))
* **deps-dev:** bump lerna from 3.18.3 to 3.18.4 ([#375](https://github.com/moyarenko/markdown/issues/375)) ([706429a](https://github.com/moyarenko/markdown/commit/706429a068a927a4ffb2c9a0d29f4ad61caf9257))
* Bump lerna from 3.18.4 to 3.19.0 ([#390](https://github.com/moyarenko/markdown/issues/390)) ([894d372](https://github.com/moyarenko/markdown/commit/894d3721917cfe4d4f2401fe7a10b94acce652ac))
* **deps-dev:** Bump lerna from 3.19.0 to 3.20.2 ([#428](https://github.com/moyarenko/markdown/issues/428)) ([5ad2aaf](https://github.com/moyarenko/markdown/commit/5ad2aaf353c265ff9622856fe331dbfdd174a448))
* **deps-dev:** Bump lerna from 3.20.2 to 3.22.0 ([#706](https://github.com/moyarenko/markdown/issues/706)) ([dba4a99](https://github.com/moyarenko/markdown/commit/dba4a99898b7720e5229a8c63c4754a3d5bfbfbd))
* **deps-dev:** bump lerna from 3.22.0 to 3.22.1 ([#805](https://github.com/moyarenko/markdown/issues/805)) ([a9d5823](https://github.com/moyarenko/markdown/commit/a9d582326b9bddd303adadcde05c90ffa8e3ce90))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/api-logs ([#843](https://github.com/moyarenko/markdown/issues/843)) ([50d7600](https://github.com/moyarenko/markdown/commit/50d7600c4a2d9332667676104367b38a03cbb5d6))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/markdown ([#844](https://github.com/moyarenko/markdown/issues/844)) ([0088cd9](https://github.com/moyarenko/markdown/commit/0088cd9a394e8edb5c854fa77bf83e90f35266ba))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/oas-to-har ([#840](https://github.com/moyarenko/markdown/issues/840)) ([9a7ffa7](https://github.com/moyarenko/markdown/commit/9a7ffa7b79c2c2e501774d11568f7f78efea9e35))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/variable ([#839](https://github.com/moyarenko/markdown/issues/839)) ([fc545eb](https://github.com/moyarenko/markdown/commit/fc545ebe10ac6e1011c2d66a376d10b87705ffa7))
* **deps:** bump lodash in /packages/api-explorer ([#837](https://github.com/moyarenko/markdown/issues/837)) ([1f62788](https://github.com/moyarenko/markdown/commit/1f62788fe78bb94b4360a451d359149a0280d676))
* **deps:** bump lodash in /packages/markdown-magic ([#841](https://github.com/moyarenko/markdown/issues/841)) ([aa44d36](https://github.com/moyarenko/markdown/commit/aa44d36a16da6acdd83c606221432b04bc294c1b))
* **deps:** bump lodash in /packages/oas-extensions ([#836](https://github.com/moyarenko/markdown/issues/836)) ([d0e2f34](https://github.com/moyarenko/markdown/commit/d0e2f3442421752b406d8ec99a1beb93ac04f45d))
* **deps:** bump lodash in /packages/oas-to-snippet ([#842](https://github.com/moyarenko/markdown/issues/842)) ([e71eb63](https://github.com/moyarenko/markdown/commit/e71eb63245af070b720d9b41059da300f8fa8198))
* **deps:** bump lodash in /packages/syntax-highlighter ([#845](https://github.com/moyarenko/markdown/issues/845)) ([07759a6](https://github.com/moyarenko/markdown/commit/07759a6b98768373c72490b99f318378f95d9a67))
* **deps-dev:** bump mini-css-extract-plugin from 1.3.6 to 2.1.0 ([#214](https://github.com/moyarenko/markdown/issues/214)) ([427e304](https://github.com/moyarenko/markdown/commit/427e3044e9cc04b38bef927b10ae28d040042c87))
* **deps:** bump minimist from 1.2.5 to 1.2.6 ([#458](https://github.com/moyarenko/markdown/issues/458)) ([adc55c2](https://github.com/moyarenko/markdown/commit/adc55c2a54295ecd8978d7d1d0589c18ed724d3c))
* **deps-dev:** Bump nock from 11.7.0 to 11.7.1 ([#425](https://github.com/moyarenko/markdown/issues/425)) ([a2eeba8](https://github.com/moyarenko/markdown/commit/a2eeba8b7a566620e62895509ed75dcadf1a25ec))
* **deps-dev:** Bump nock from 11.7.1 to 11.7.2 ([#441](https://github.com/moyarenko/markdown/issues/441)) ([06d8b76](https://github.com/moyarenko/markdown/commit/06d8b76567d7b9a051289191f19ebae4b49be644))
* **deps-dev:** Bump nock from 11.7.2 to 11.8.2 ([#475](https://github.com/moyarenko/markdown/issues/475)) ([86b1f1f](https://github.com/moyarenko/markdown/commit/86b1f1f48d75c075e99af9dfcc1683f0bd797f76))
* **deps-dev:** Bump nock from 11.8.2 to 12.0.0 ([#480](https://github.com/moyarenko/markdown/issues/480)) ([26a4c1f](https://github.com/moyarenko/markdown/commit/26a4c1f1ad2e687d18d9b786947372db9f68a191))
* **deps-dev:** Bump nock from 12.0.0 to 12.0.1 ([#488](https://github.com/moyarenko/markdown/issues/488)) ([f49c5ee](https://github.com/moyarenko/markdown/commit/f49c5eed2f85641e92278ced243a1eb54643e094))
* **deps-dev:** Bump nock from 12.0.1 to 12.0.2 ([#497](https://github.com/moyarenko/markdown/issues/497)) ([75e5488](https://github.com/moyarenko/markdown/commit/75e5488dc337ea16ab879976072a6367ecf6b9ad))
* **deps-dev:** bump nock from 12.0.2 to 12.0.3 ([#785](https://github.com/moyarenko/markdown/issues/785)) ([8d9028a](https://github.com/moyarenko/markdown/commit/8d9028af358919ef76167f0841fc019797591a8a))
* **deps-dev:** bump nock from 12.0.3 to 13.0.2 ([#827](https://github.com/moyarenko/markdown/issues/827)) ([12a52b5](https://github.com/moyarenko/markdown/commit/12a52b5b4df8aa07b947aac994346b33d554017d))
* Bump node-fetch from 2.0.0-alpha.9 to 2.6.0 ([#280](https://github…
moyarenko pushed a commit to moyarenko/markdown that referenced this pull request Nov 3, 2022
## Version 1.0.0

### ⚠ BREAKING CHANGES

* CHANGE: Certain tags and a lot of attributes will be stripped from html blocks

### 📘 Tests & Docs

* add category to each page ([#171](https://github.com/moyarenko/markdown/issues/171)) ([9a5e1c6](https://github.com/moyarenko/markdown/commit/9a5e1c613113f04523bbb7d83eacd0621fde570a))
* add link for emoji list ([#547](https://github.com/moyarenko/markdown/issues/547)) ([bab15ff](https://github.com/moyarenko/markdown/commit/bab15ff32b750b028e14fe18642b37b0ba2137ea))
* **readme:** add Local Development section ([#283](https://github.com/moyarenko/markdown/issues/283)) ([f2414ed](https://github.com/moyarenko/markdown/commit/f2414ed570961c56b683c1547466265cf4ff596f))
* adding a code of conduct ([b00b1f5](https://github.com/moyarenko/markdown/commit/b00b1f5b368970db97577a13a84bedbffc73afe5))
* adding a new oneOf example for a nested oneOf ([31c2902](https://github.com/moyarenko/markdown/commit/31c29028ce49c967ebe3a272fa12068aa6638689))
* adding a pull request template ([5818d33](https://github.com/moyarenko/markdown/commit/5818d33e038143b96d94cfce0db74b68d6c887d4))
* adding a security policy ([bbc81a2](https://github.com/moyarenko/markdown/commit/bbc81a26d3a94c57e5345325d8cb0780d06bd467))
* align status badge ([f43f035](https://github.com/moyarenko/markdown/commit/f43f0354c67b9f2778c1f33272854d565af215f1))
* also delete SECURITY.md ([6b0eb1f](https://github.com/moyarenko/markdown/commit/6b0eb1f2bc3d973dfe028fa54af213dad0c3c14d))
* delete CoC in favor of shared org files ([6eb18ac](https://github.com/moyarenko/markdown/commit/6eb18acce1cf5f77fd5f6417abea245c5bad996e))
* **readme:** formatting and copy edits ([ce9d154](https://github.com/moyarenko/markdown/commit/ce9d1549445cda85998ad6380f7168ce26231ff9))
* graphql/JSX lang support, contributing ([#448](https://github.com/moyarenko/markdown/issues/448)) ([e3c8b43](https://github.com/moyarenko/markdown/commit/e3c8b435cdb7f97aa5ffb566c7e0e3a3fdb25534))
* make cookie example better ([#825](https://github.com/moyarenko/markdown/issues/825)) ([89480ee](https://github.com/moyarenko/markdown/commit/89480ee725136e148702e2fd66189774c4325874))
* **callouts:** minor updates ([#445](https://github.com/moyarenko/markdown/issues/445)) ([f99df00](https://github.com/moyarenko/markdown/commit/f99df00ea2c11e9cae7d7023ae0795b991b04651))
* remove unnecessary slug parameter, newlines ([8e0ac53](https://github.com/moyarenko/markdown/commit/8e0ac533255f9a95b956fbaaccb3c6957767ea11)), closes [/github.com/readmeio/markdown/pull/173#issuecomment-867169250](https://github.com/moyarenko//github.com/readmeio/markdown/pull/173/issues/issuecomment-867169250)
* removing the checklist from our pr template ([4d3afff](https://github.com/moyarenko/markdown/commit/4d3affffa6796438eba7d7158f85355ff7ac8294))
* sync exported markdown to RDMD site ([#105](https://github.com/moyarenko/markdown/issues/105)) ([8651c88](https://github.com/moyarenko/markdown/commit/8651c883beedb9711258f1a1b3f4799fd110c4c5))
* update custom CSS guidance ([#172](https://github.com/moyarenko/markdown/issues/172)) ([5c3725d](https://github.com/moyarenko/markdown/commit/5c3725d4bafd5c11fa3bb1cd93b6d725772d31a7))
* update docs to latest markdown ([#107](https://github.com/moyarenko/markdown/issues/107)) ([239d0df](https://github.com/moyarenko/markdown/commit/239d0df022aecd9996db9b00f86b9ea4f2442341))
* update link ([d90138d](https://github.com/moyarenko/markdown/commit/d90138d855582cbd7aab4c229b83a3d88de9e933))
* update links, minor edits ([57e1fd5](https://github.com/moyarenko/markdown/commit/57e1fd5e114d2fd9e50987485cdf1f0c872aec6a))
* update status badge ([d6d7238](https://github.com/moyarenko/markdown/commit/d6d723859ded6ea42b66aa52926014d09f758980))
* update the PR template ([#127](https://github.com/moyarenko/markdown/issues/127)) ([72c4475](https://github.com/moyarenko/markdown/commit/72c44756b674b0676be1dce951677b062fb22542))
* updating the http-status-codes readme ([7675fce](https://github.com/moyarenko/markdown/commit/7675fce686dc75b3c7bdb05fe42ca25f5bb69192))
* updating the markdown-magic readme ([3dbfaa0](https://github.com/moyarenko/markdown/commit/3dbfaa08cba60114a970692e66e3a1858bba6794))
* updating the pr template ([#462](https://github.com/moyarenko/markdown/issues/462)) ([7b513e0](https://github.com/moyarenko/markdown/commit/7b513e0fbca17afa03d8b89a61429133b852b487))
* updating the readme ([8092dfb](https://github.com/moyarenko/markdown/commit/8092dfbcafb84facf924697f029aaaea4abf7a72))
* updating the root readme a bit ([895a637](https://github.com/moyarenko/markdown/commit/895a6379f38469b3a02370ff0b6ebd8428941782))

### ✨ New & Improved

* **markdown:**  ([#660](https://github.com/moyarenko/markdown/issues/660)) ([268a282](https://github.com/moyarenko/markdown/commit/268a28242dbb94e526db8d73989f278745f0933b)), closes [readmeio/readme#2700](https://github.com/readmeio/readme/issues/2700)
* ✨ implement isomorphic markdown parser package ([#537](https://github.com/moyarenko/markdown/issues/537)) ([8fa38e3](https://github.com/moyarenko/markdown/commit/8fa38e3684d69ddd16d5a710cc008a8d4d254b1c))
* **explorer:** add .markdown-body class to excerpt ([#665](https://github.com/moyarenko/markdown/issues/665)) ([cd1daaf](https://github.com/moyarenko/markdown/commit/cd1daafa1cfbbfc62ff112b2dc495744d17476bc))
* **release:** add a next channel ([#91](https://github.com/moyarenko/markdown/issues/91)) ([5938622](https://github.com/moyarenko/markdown/commit/59386226fc8785f159fe97464ad4aef48dbb58b8))
* add class for blank-line ([#457](https://github.com/moyarenko/markdown/issues/457)) ([347cfa6](https://github.com/moyarenko/markdown/commit/347cfa60cb45a23d3cb50671290b168bd91ce006))
* add dark option for code blocks ([#284](https://github.com/moyarenko/markdown/issues/284)) ([885b844](https://github.com/moyarenko/markdown/commit/885b8441a6ad423b4d59a14a7430c882f5ea1fad))
* add escape type ([#489](https://github.com/moyarenko/markdown/issues/489)) ([dd3d851](https://github.com/moyarenko/markdown/commit/dd3d851f2d0b165c851adf2469ef1b207e881745))
* add lazy flag for images ([#594](https://github.com/moyarenko/markdown/issues/594)) ([fda31b8](https://github.com/moyarenko/markdown/commit/fda31b8dcc60706545d5e42e0c4ebbb0c06cdb5b))
* add safeMode flag ([#517](https://github.com/moyarenko/markdown/issues/517)) ([4e79005](https://github.com/moyarenko/markdown/commit/4e79005f3cc0c1820536657059ad3d2083a66e1d))
* add support for syntax highlighting more languages  ([#728](https://github.com/moyarenko/markdown/issues/728)) ([13cb4e4](https://github.com/moyarenko/markdown/commit/13cb4e4eb06e8f235f4a0acc3ce2f78dcd2ab29a))
* add width support to image compiler ([#417](https://github.com/moyarenko/markdown/issues/417)) ([8fc2d50](https://github.com/moyarenko/markdown/commit/8fc2d500900c406f6685f3ed5596257fcaef9b39))
* add yaml compiler ([#509](https://github.com/moyarenko/markdown/issues/509)) ([ac238d1](https://github.com/moyarenko/markdown/commit/ac238d1d58164071eafeb893992662e4e00c6aec))
* adding a handful of new status codes ([#520](https://github.com/moyarenko/markdown/issues/520)) ([35db543](https://github.com/moyarenko/markdown/commit/35db54372bc59ab0ac080731cc738c39eab2f96f))
* adding a handful of unofficial http status codes ([#522](https://github.com/moyarenko/markdown/issues/522)) ([6d94a79](https://github.com/moyarenko/markdown/commit/6d94a79039e5cbd5baaf7ab6422e0c1dee1d528f))
* adding a new `copyButtons` option for disabling code copy btns ([#59](https://github.com/moyarenko/markdown/issues/59)) ([e4c40fd](https://github.com/moyarenko/markdown/commit/e4c40fde5f0e6411e24b25ba44c8c424bf406913))
* adding support for a handful of language highlight aliases ([#643](https://github.com/moyarenko/markdown/issues/643)) ([7d52154](https://github.com/moyarenko/markdown/commit/7d5215441ef6559ecda58a5c09fcf56438ab190e))
* adding support for cookie auth ([#817](https://github.com/moyarenko/markdown/issues/817)) ([5a2ef14](https://github.com/moyarenko/markdown/commit/5a2ef14615fde6302d2ac062aa49e7c10ba59043))
* adding support for cookies to oas-to-har ([#794](https://github.com/moyarenko/markdown/issues/794)) ([37b020d](https://github.com/moyarenko/markdown/commit/37b020d5dc86f444807e8194a0fe2bdbfdf6548d))
* adding support for handling `default` responses ([#846](https://github.com/moyarenko/markdown/issues/846)) ([783fe1a](https://github.com/moyarenko/markdown/commit/783fe1a24c9cc2b3509366bb0e9b862ae71a7a99))
* adding support for highlighting diffs ([#835](https://github.com/moyarenko/markdown/issues/835)) ([eb04c38](https://github.com/moyarenko/markdown/commit/eb04c38e0b944b26bc5e03cb63d8a2730586dc3d))
* adding support for highlighting OCaml and R languages ([#151](https://github.com/moyarenko/markdown/issues/151)) ([b901605](https://github.com/moyarenko/markdown/commit/b90160520a74f624faedf780d5bea6df583aa180))
* adding support for more string formats ([#381](https://github.com/moyarenko/markdown/issues/381)) ([da9c5a2](https://github.com/moyarenko/markdown/commit/da9c5a2d415842b65aa9da680fb1b61312a76536))
* Adding support for multiple media types ([#312](https://github.com/moyarenko/markdown/issues/312)) ([6ac7b67](https://github.com/moyarenko/markdown/commit/6ac7b67dd279c2c3e1652c24cff5b4a27dc2a5b7))
* addition of a new "node-simple" client language for our api sdk module ([#792](https://github.com/moyarenko/markdown/issues/792)) ([8f53c87](https://github.com/moyarenko/markdown/commit/8f53c871fe409a57ad14a4b7263855eeeb92846e))
* **markdown:** adjust lightbox img width ([#645](https://github.com/moyarenko/markdown/issues/645)) ([a016b88](https://github.com/moyarenko/markdown/commit/a016b88ee47a44e7f891efa7762dbaabcd7d76a0))
* adopt variable ([#200](https://github.com/moyarenko/markdown/issues/200)) ([947e31e](https://github.com/moyarenko/markdown/commit/947e31e08e02fe4d82c628ebd5bf3dd268ff3471))
* allow disabling tokenizers ([#119](https://github.com/moyarenko/markdown/issues/119)) ([0418a05](https://github.com/moyarenko/markdown/commit/0418a0543e0b15a00b51c0de38180c9de2f2b5fe))
* allow download attr in a-tags ([#39](https://github.com/moyarenko/markdown/issues/39)) ([87d8099](https://github.com/moyarenko/markdown/commit/87d8099e77095ce2aabe3a8c94c5da44d0b5a2a7))
* allow nesting callouts ([#601](https://github.com/moyarenko/markdown/issues/601)) ([e624b9a](https://github.com/moyarenko/markdown/commit/e624b9a18de59e570e15b5f899de71af06d77d4e))
* always use ATX format for headers ([#571](https://github.com/moyarenko/markdown/issues/571)) ([270e86f](https://github.com/moyarenko/markdown/commit/270e86f50e93746561f97e3702ec52de5d23bd4c))
* App selections should update current auth states ([#220](https://github.com/moyarenko/markdown/issues/220)) ([c97ff83](https://github.com/moyarenko/markdown/commit/c97ff8392c8a901b94766aef31382502804b7356))
* autoregister custom component tags and attrs ([#342](https://github.com/moyarenko/markdown/issues/342)) ([e58309a](https://github.com/moyarenko/markdown/commit/e58309aa27aebd6fccfc73a32e0f25daa7167aa9))
* compile custom magic blocks ([#399](https://github.com/moyarenko/markdown/issues/399)) ([d62229a](https://github.com/moyarenko/markdown/commit/d62229a6f12a6280ec4e313e22cdb1802b49796a))
* creating a new http-status-codes package ([#519](https://github.com/moyarenko/markdown/issues/519)) ([4f29c2b](https://github.com/moyarenko/markdown/commit/4f29c2bb65c5c9ae3a535d06d0fa6a1d9b705736))
* **glossary:** dark mode ([#599](https://github.com/moyarenko/markdown/issues/599)) ([6d9e7eb](https://github.com/moyarenko/markdown/commit/6d9e7eb92ee958bd9db1e88bfbb316adf6efd3bd))
* decoupling OAS code snippet generation into a standalone package ([#812](https://github.com/moyarenko/markdown/issues/812)) ([8fbe211](https://github.com/moyarenko/markdown/commit/8fbe21101dbde115e36d94506f810d91576ed33c))
* don't render style in safeMode ([#525](https://github.com/moyarenko/markdown/issues/525)) ([8a68880](https://github.com/moyarenko/markdown/commit/8a6888017fdbcfe125353718773b5449952796bd))
* ensure bordered images are rendered via a magic block ([#579](https://github.com/moyarenko/markdown/issues/579)) ([c3fb6f2](https://github.com/moyarenko/markdown/commit/c3fb6f299dde6619dea8e789042f746242d486af))
* error codes are now unique to the error message they're for ([#542](https://github.com/moyarenko/markdown/issues/542)) ([8e6d4c1](https://github.com/moyarenko/markdown/commit/8e6d4c11f74d7d101f902a24d8b517c266a6df20))
* export callout icons ([#219](https://github.com/moyarenko/markdown/issues/219)) ([7391b14](https://github.com/moyarenko/markdown/commit/7391b143d4ae889556e4be0d7c78650049c143ba))
* export components ([#218](https://github.com/moyarenko/markdown/issues/218)) ([4f888f6](https://github.com/moyarenko/markdown/commit/4f888f6a4e0db2429b30652b32efceb2a6139fae))
* expose the core setup method ([#51](https://github.com/moyarenko/markdown/issues/51)) ([3e85a53](https://github.com/moyarenko/markdown/commit/3e85a539d99eb86ff1dea3ea050eb2b5add9aa74))
* Extracting oas-to-har into @readme/oas-to-har ([#376](https://github.com/moyarenko/markdown/issues/376)) ([cd7dba3](https://github.com/moyarenko/markdown/commit/cd7dba3ad76e181b7df05932fdb917f7e4e24436))
* fix glossary term overflow in tables ([#108](https://github.com/moyarenko/markdown/issues/108)) ([52e8d9e](https://github.com/moyarenko/markdown/commit/52e8d9efddcfdd205c17be6fdbd62c70f6b31fe5))
* **rdmd/callout:** fix icon alignment ([#853](https://github.com/moyarenko/markdown/issues/853)) ([7ee7b5f](https://github.com/moyarenko/markdown/commit/7ee7b5f472c6b0248e4fb9745631b18e8e2cbb59))
* **rdmd:** fix link text-decoration ([#826](https://github.com/moyarenko/markdown/issues/826)) ([e080e92](https://github.com/moyarenko/markdown/commit/e080e9258ac59ac0c5c6632b232a2c9193aa7f40))
* fix plain string compiler ([#532](https://github.com/moyarenko/markdown/issues/532)) ([278d5ed](https://github.com/moyarenko/markdown/commit/278d5ed3e31b58799c46852d98c7d03e248df053))
* fixing some ssr issues with the markdown renderer  ([#705](https://github.com/moyarenko/markdown/issues/705)) ([52690a0](https://github.com/moyarenko/markdown/commit/52690a0dd7f174ef07cbfcf1c73edf768d9dea73))
* **tables:** hide empty table header rows ([#99](https://github.com/moyarenko/markdown/issues/99)) ([8b6d24b](https://github.com/moyarenko/markdown/commit/8b6d24bf3b1cebfce19b161bb669e504bddf083d))
* html block ([#609](https://github.com/moyarenko/markdown/issues/609)) ([6e9d8db](https://github.com/moyarenko/markdown/commit/6e9d8db0d901f131206f3ac23400bfd844e0836c))
* implement markdown/html in excerpt([#161](https://github.com/moyarenko/markdown/issues/161)) ([aee9d82](https://github.com/moyarenko/markdown/commit/aee9d82400db9a8f61110f44dffb3a1e501797af))
* implementing @readme/http-status-codes in the API Explorer ([#521](https://github.com/moyarenko/markdown/issues/521)) ([b04c980](https://github.com/moyarenko/markdown/commit/b04c980818f7844442ebe9d21ef3f3b2cd4eb01f))
* importing @readme/emojis in the markdown processor ([#473](https://github.com/moyarenko/markdown/issues/473)) ([ae1652e](https://github.com/moyarenko/markdown/commit/ae1652e4aa32b1c7d5c40ef8d598e2c3e341dd8a))
* improved har generation ([#689](https://github.com/moyarenko/markdown/issues/689)) ([2e6ac2e](https://github.com/moyarenko/markdown/commit/2e6ac2ec2dd29acd03cd9154c51f457218752d57))
* incrementing version ([7639794](https://github.com/moyarenko/markdown/commit/76397941cb4c454844961fd9fe0402e8067dbd75))
* initial implementation ([bbb5a12](https://github.com/moyarenko/markdown/commit/bbb5a12dc868f7dc3c8a889725e8139f90c6cf77))
* introducing enforcement on commit messages ([#703](https://github.com/moyarenko/markdown/issues/703)) ([7dba727](https://github.com/moyarenko/markdown/commit/7dba727bd2ea9b36af8d36e925ee9faf792d5d66))
* less lossy md() ([#377](https://github.com/moyarenko/markdown/issues/377)) ([4189554](https://github.com/moyarenko/markdown/commit/4189554e6f332ca396c6095ad3f028f567c7c2f3))
* **logs:** match null state to logged-out designs ([#833](https://github.com/moyarenko/markdown/issues/833)) ([9a6a8da](https://github.com/moyarenko/markdown/commit/9a6a8dafb3a2b767016cb15720d079c56b8ab4aa))
* **anchor:** menu item styling for doc links ([#589](https://github.com/moyarenko/markdown/issues/589)) ([31dbf68](https://github.com/moyarenko/markdown/commit/31dbf684832cf204eb952b50a2e59d60152975e5))
* more compiler updates ([#383](https://github.com/moyarenko/markdown/issues/383)) ([313e905](https://github.com/moyarenko/markdown/commit/313e9056e8eb114bc556bc50c163ebafaa6f1bcc))
* nested ast processing ([#679](https://github.com/moyarenko/markdown/issues/679)) ([67066b8](https://github.com/moyarenko/markdown/commit/67066b8fed325d47d29bcd68636df2152023ff83))
* new markdown engine ([#458](https://github.com/moyarenko/markdown/issues/458)) ([864b64b](https://github.com/moyarenko/markdown/commit/864b64b646ae505c8e527ddf42518a589d28dd87)), closes [#306](https://github.com/moyarenko/markdown/issues/306) [#398](https://github.com/moyarenko/markdown/issues/398) [#435](https://github.com/moyarenko/markdown/issues/435) [#404](https://github.com/moyarenko/markdown/issues/404) [#405](https://github.com/moyarenko/markdown/issues/405) [#406](https://github.com/moyarenko/markdown/issues/406) [#407](https://github.com/moyarenko/markdown/issues/407) [#413](https://github.com/moyarenko/markdown/issues/413) [#416](https://github.com/moyarenko/markdown/issues/416) [#410](https://github.com/moyarenko/markdown/issues/410) [#415](https://github.com/moyarenko/markdown/issues/415) [#408](https://github.com/moyarenko/markdown/issues/408) [#409](https://github.com/moyarenko/markdown/issues/409) [#417](https://github.com/moyarenko/markdown/issues/417) [#411](https://github.com/moyarenko/markdown/issues/411) [#412](https://github.com/moyarenko/markdown/issues/412) [#414](https://github.com/moyarenko/markdown/issues/414) [#424](https://github.com/moyarenko/markdown/issues/424) [#428](https://github.com/moyarenko/markdown/issues/428) [#425](https://github.com/moyarenko/markdown/issues/425) [#418](https://github.com/moyarenko/markdown/issues/418) [#419](https://github.com/moyarenko/markdown/issues/419) [#421](https://github.com/moyarenko/markdown/issues/421) [#422](https://github.com/moyarenko/markdown/issues/422) [#423](https://github.com/moyarenko/markdown/issues/423) [#426](https://github.com/moyarenko/markdown/issues/426) [#427](https://github.com/moyarenko/markdown/issues/427) [#429](https://github.com/moyarenko/markdown/issues/429) [#430](https://github.com/moyarenko/markdown/issues/430) [#432](https://github.com/moyarenko/markdown/issues/432) [#431](https://github.com/moyarenko/markdown/issues/431) [#434](https://github.com/moyarenko/markdown/issues/434) [/github.com/facebook/jest/issues/9396#issuecomment-573328488](https://github.com/moyarenko//github.com/facebook/jest/issues/9396/issues/issuecomment-573328488) [#508](https://github.com/moyarenko/markdown/issues/508) [#515](https://github.com/moyarenko/markdown/issues/515) [#516](https://github.com/moyarenko/markdown/issues/516)
* **demo:** polish sticky scrolling ([#523](https://github.com/moyarenko/markdown/issues/523)) ([3c6c2e6](https://github.com/moyarenko/markdown/commit/3c6c2e623e993ba7d8a2ff950ed12435040d0f6d))
* promote the markdown engine into a dedicated repo ([#12](https://github.com/moyarenko/markdown/issues/12)) ([6093851](https://github.com/moyarenko/markdown/commit/6093851f26007da7a5775e381027773e948db644))
* prompt to log into docs for hubs with logs ([#683](https://github.com/moyarenko/markdown/issues/683)) ([84027ec](https://github.com/moyarenko/markdown/commit/84027ecaba55ff8e372c5a4a34b49e23eb3d5271)), closes [/github.com/readmeio/api-explorer/pull/683#discussion_r421133565](https://github.com/moyarenko//github.com/readmeio/api-explorer/pull/683/issues/discussion_r421133565)
* **markdown:** pull CSS from readme ([#650](https://github.com/moyarenko/markdown/issues/650)) ([bd3d0d3](https://github.com/moyarenko/markdown/commit/bd3d0d39ddb4688bfd4ac59bbf7134bd72bbbf4f)), closes [#647](https://github.com/moyarenko/markdown/issues/647)
* refer to new pointers for log ([#407](https://github.com/moyarenko/markdown/issues/407)) ([193b38b](https://github.com/moyarenko/markdown/commit/193b38b17687f99a9df5f104638cdb7ed2dea36c))
* removing an eslint disable in the http-status-codes pkg ([3e35c56](https://github.com/moyarenko/markdown/commit/3e35c56c0822241ede00d5d452ebea88911a811b))
* save newlines with spaces ([#471](https://github.com/moyarenko/markdown/issues/471)) ([63649e7](https://github.com/moyarenko/markdown/commit/63649e73656f1e41c3c5ef7284ddad22d4831193))
* **markdown:** server-side rdmd bundle ([#767](https://github.com/moyarenko/markdown/issues/767)) ([4422341](https://github.com/moyarenko/markdown/commit/44223414eb14f4cfa46a10482c7207c2f801efed))
* setting a custom header for all "Try It" requests ([#471](https://github.com/moyarenko/markdown/issues/471)) ([663d82f](https://github.com/moyarenko/markdown/commit/663d82f09092b9fb35f6f43b464b171590a599f9))
* specify component-to-custom magic block mappings ([#60](https://github.com/moyarenko/markdown/issues/60)) ([460270b](https://github.com/moyarenko/markdown/commit/460270be16a2ca4709d57089b70a179d622daabf))
* splitting out our current markdown engine to a new package ([#514](https://github.com/moyarenko/markdown/issues/514)) ([087374d](https://github.com/moyarenko/markdown/commit/087374d2af9e2f1b0f1322507324979f7d9494b7))
* support for allOf and a host of small improvements and bug fixes ([#436](https://github.com/moyarenko/markdown/issues/436)) ([f1381d1](https://github.com/moyarenko/markdown/commit/f1381d16e06df1b49c25e7d6d66f2fdd436d9357)), closes [#517](https://github.com/moyarenko/markdown/issues/517)
* table of contents generator ([#43](https://github.com/moyarenko/markdown/issues/43)) ([056bea6](https://github.com/moyarenko/markdown/commit/056bea6d43ee3868f703fe76c3b74d521b2564da))
* throw when parsing invalid magic block json ([#563](https://github.com/moyarenko/markdown/issues/563)) ([72a59dc](https://github.com/moyarenko/markdown/commit/72a59dcc2790fb2721504e7ddee69042e03163c3))
* treat react and react-dom as external deps ([#90](https://github.com/moyarenko/markdown/issues/90)) ([7be16d7](https://github.com/moyarenko/markdown/commit/7be16d7a4de3ede54a3c46ef7cc5797a1a47888e))
* **release:** trigger build ([00b91cc](https://github.com/moyarenko/markdown/commit/00b91ccfac60004ab7d8d78515c67a1ffe8d1797))
* **release:** trigger build ([ff9e757](https://github.com/moyarenko/markdown/commit/ff9e757a8db1e2ad5ea4e3d095ecb09d06fb0f10))
* trigger release ([9549095](https://github.com/moyarenko/markdown/commit/9549095fc9c4587812bd482bf2d1f52b295e53ff))
* try using purecomponent for html ([#562](https://github.com/moyarenko/markdown/issues/562)) ([6f44d4b](https://github.com/moyarenko/markdown/commit/6f44d4b1cfe2ae2724ab425f08056a78c27138f4))
* Update Schema Form UI ([#228](https://github.com/moyarenko/markdown/issues/228)) ([162086c](https://github.com/moyarenko/markdown/commit/162086c04a7e0989ef2631f69e901a4581663618))
* updating dependabot to follow our commit standards ([a06d86d](https://github.com/moyarenko/markdown/commit/a06d86dd7193c79c4f7cf496e3fe9b9ddcef5ad7))
* updating our callout emoji regex to use `emoji-regex` ([#536](https://github.com/moyarenko/markdown/issues/536)) ([87fdde2](https://github.com/moyarenko/markdown/commit/87fdde2fe48d958694308e0b7facec18a7e6219e))
* Upgrade to Webpack 4 ([#270](https://github.com/moyarenko/markdown/issues/270)) ([27efa37](https://github.com/moyarenko/markdown/commit/27efa379b4963af2648cba0ba9df7786735c2035))
* upgrading @readme/react-jsonschema-form to v1.2.0 ([#852](https://github.com/moyarenko/markdown/issues/852)) ([4e37271](https://github.com/moyarenko/markdown/commit/4e3727163371753c69088181c3702f01da3518b3))
* upgrading out of date deps ([#542](https://github.com/moyarenko/markdown/issues/542)) ([f8aae4f](https://github.com/moyarenko/markdown/commit/f8aae4f9a387974079e8d958917e936755b45820))
* upgrading prettier to 2.0 ([#546](https://github.com/moyarenko/markdown/issues/546)) ([e3582ec](https://github.com/moyarenko/markdown/commit/e3582ec0d742f6152a03ea730ac12adcba1370e3))
* upgrading syntax-highlighter to support Lua and Solidity ([#391](https://github.com/moyarenko/markdown/issues/391)) ([3466ece](https://github.com/moyarenko/markdown/commit/3466ecefc97405a3e2ebe953a1d754f4eb8be6b2))
* **glossary-item:** use react-tippy to control tooltips ([#553](https://github.com/moyarenko/markdown/issues/553)) ([0302473](https://github.com/moyarenko/markdown/commit/03024739dd439ebac3ffc45b35c073d80eb576c4))
* validate oas on preview ([#721](https://github.com/moyarenko/markdown/issues/721)) ([4e6df88](https://github.com/moyarenko/markdown/commit/4e6df886285b6dd30903c5a43c6e68e50d89f912))
* visual regression testing and dev server app ([#94](https://github.com/moyarenko/markdown/issues/94)) ([0774166](https://github.com/moyarenko/markdown/commit/07741663d0a603c7f178b63ebed6a81695e36ec2))

### 🛠 Fixes & Updates

* _actually_ publish releases to npm ([c6a8883](https://github.com/moyarenko/markdown/commit/c6a88835ebf4fd7a7ba7537ac932eaa03468404a))
* **deps:** [Security] Bump acorn from 6.4.0 to 6.4.1 ([#580](https://github.com/moyarenko/markdown/issues/580)) ([11a145b](https://github.com/moyarenko/markdown/commit/11a145b25734f826ad5a76cb7daea0e3368c93a5))
* **deps:** [Security] Bump handlebars from 4.1.2 to 4.5.3 ([#418](https://github.com/moyarenko/markdown/issues/418)) ([f06bfb2](https://github.com/moyarenko/markdown/commit/f06bfb25081ae368480428af5b5270f348289f5b))
* <a href="javascript:alert('eek')">oops?</a> ([f3b7bc7](https://github.com/moyarenko/markdown/commit/f3b7bc7d986e0fbf82a4b6d68707250434161d9a))
* 🐛 create normalize as an option ([#559](https://github.com/moyarenko/markdown/issues/559)) ([af577ba](https://github.com/moyarenko/markdown/commit/af577ba458a4517d17faf5cea4e63dbcdd0dd77a))
* **recipes:** add 'slug' to whitelist ([#118](https://github.com/moyarenko/markdown/issues/118)) ([03d966a](https://github.com/moyarenko/markdown/commit/03d966a86b0a271525ee52f6ab28cd288796997d))
* add alt text option for images ([#535](https://github.com/moyarenko/markdown/issues/535)) ([4d7876b](https://github.com/moyarenko/markdown/commit/4d7876b3bac9013626feef69bad4c879ad73565d))
* **heading:** add aria-label to anchors ([#230](https://github.com/moyarenko/markdown/issues/230)) ([1df0220](https://github.com/moyarenko/markdown/commit/1df0220e4995ecd64c93d2a0fe155d6ec9f956e2))
* add back padding to lists in callouts ([#126](https://github.com/moyarenko/markdown/issues/126)) ([184c238](https://github.com/moyarenko/markdown/commit/184c2389acd48ef19eceee1d2e23402fddbfe235))
* add back support for certain ranges of emoji ([#279](https://github.com/moyarenko/markdown/issues/279)) ([163863f](https://github.com/moyarenko/markdown/commit/163863f9d6d99009f1c6f1f1d08ef6f81bda3ab2))
* add codemirror as exp dep ([#82](https://github.com/moyarenko/markdown/issues/82)) ([5a3aa52](https://github.com/moyarenko/markdown/commit/5a3aa520627dc7aa4c0413ce25be24849897e86b))
* **gemoji:** add compiler for font-awesome emojis ([#461](https://github.com/moyarenko/markdown/issues/461)) ([36f0b9d](https://github.com/moyarenko/markdown/commit/36f0b9d38a3e32cd8a77e0f7dd33e113de54f2a7))
* **SEO:** add href to TOC ([#447](https://github.com/moyarenko/markdown/issues/447)) ([06a463e](https://github.com/moyarenko/markdown/commit/06a463e540c94b4a250be9238ea0ee2de245e74a))
* **seo:** add href to TOC ([#455](https://github.com/moyarenko/markdown/issues/455)) ([a99f57f](https://github.com/moyarenko/markdown/commit/a99f57f926fdcdfc9791a6904794939d18194344))
* **markdown:** add missing compilers ([#808](https://github.com/moyarenko/markdown/issues/808)) ([3a6e720](https://github.com/moyarenko/markdown/commit/3a6e720a77d7cbba6dcf9a98c439953875041aa2)), closes [#772](https://github.com/moyarenko/markdown/issues/772)
* **code:** add test for indented code blocks ([#79](https://github.com/moyarenko/markdown/issues/79)) ([bd3e8e5](https://github.com/moyarenko/markdown/commit/bd3e8e53ae74799c1e1fe603b30f80adc196cde3)), closes [#70](https://github.com/moyarenko/markdown/issues/70)
* add variables and glossary items to TOC ([#115](https://github.com/moyarenko/markdown/issues/115)) ([94e505d](https://github.com/moyarenko/markdown/commit/94e505d7399523e9083d47d9ef4ed2750df954aa))
* adding __tests__ and coverage/ into the ignore for markdown-magic ([72ad2a6](https://github.com/moyarenko/markdown/commit/72ad2a6c7a76396974c528f0727c861f6f46d8ec))
* adding .jsinspectrc to the http-status-codes npmignore file ([9d3f91e](https://github.com/moyarenko/markdown/commit/9d3f91ee2d9f376ce96e6453913fde5df4ab99c3))
* Adding a `format: password` string example to our types def ([8c592d7](https://github.com/moyarenko/markdown/commit/8c592d70fe060abab5974c7bffc478c930f3f44c))
* adding an object in query param example ([8059798](https://github.com/moyarenko/markdown/commit/80597988388592b0a9e386f095eeb60ee4765a96))
* adding in support for handling legacy manual api multi-examples ([#479](https://github.com/moyarenko/markdown/issues/479)) ([3701f6c](https://github.com/moyarenko/markdown/commit/3701f6ccbf9d1e1f5475bb41fa0204a893d31338))
* adding support for handling requestBody if its in a $ref ([#847](https://github.com/moyarenko/markdown/issues/847)) ([7f80255](https://github.com/moyarenko/markdown/commit/7f802556d67abc37dfd638b967603308769f6d80))
* adding the coverage/ directory into npmignore ([693ce1b](https://github.com/moyarenko/markdown/commit/693ce1bf9d5f164241cc9fed54ad1e6cd75a202a))
* Adopting @readme/eslint-config across every package ([#379](https://github.com/moyarenko/markdown/issues/379)) ([f2d9027](https://github.com/moyarenko/markdown/commit/f2d9027a056d7fce8aa05e1497a9c6df308724d9))
* align params to top ([#431](https://github.com/moyarenko/markdown/issues/431)) ([8bcd03c](https://github.com/moyarenko/markdown/commit/8bcd03c8b67750365e4a558ed6eb470060836497))
* allow "compact" callouts ([#611](https://github.com/moyarenko/markdown/issues/611)) ([b56d2fc](https://github.com/moyarenko/markdown/commit/b56d2fcf854de69713897e9791fccedf2b287b52))
* allow disabling per tokenizer ([#136](https://github.com/moyarenko/markdown/issues/136)) ([9bdd6e7](https://github.com/moyarenko/markdown/commit/9bdd6e7b035ec56a96014f6163ff843734fc66d8))
* allow indented code on first line ([#362](https://github.com/moyarenko/markdown/issues/362)) ([2b55c09](https://github.com/moyarenko/markdown/commit/2b55c092e669ddf1488c792748f9c9775742e97d))
* allow to pass non-undefined values([#149](https://github.com/moyarenko/markdown/issues/149)) ([b70fb90](https://github.com/moyarenko/markdown/commit/b70fb90e1e59a3a31c86f5f9f8af67ad18dd3637))
* allow undefined code children ([#390](https://github.com/moyarenko/markdown/issues/390)) ([27c30f6](https://github.com/moyarenko/markdown/commit/27c30f6ac03830d9b500bbfc0690963749261c5e))
* always build for production ([b15724d](https://github.com/moyarenko/markdown/commit/b15724df16e6bc2548e79f377f30365086b244e0))
* anchor processing ([#605](https://github.com/moyarenko/markdown/issues/605)) ([98b482e](https://github.com/moyarenko/markdown/commit/98b482e85aaf922daaf40ecc394b27dba8c3e316))
* API righthand sidebar styling (again) ([#591](https://github.com/moyarenko/markdown/issues/591)) ([f870549](https://github.com/moyarenko/markdown/commit/f8705494df1c7e56914758db4bafcfe625189911))
* astToPlainText with lone image ([#561](https://github.com/moyarenko/markdown/issues/561)) ([477322a](https://github.com/moyarenko/markdown/commit/477322acfd54a03ad785edb6dcf01577d8665fa9))
* attaching my name to workflow dep updates ([193755f](https://github.com/moyarenko/markdown/commit/193755fcd9d231984bc2afa6f2eca12ce52f940d))
* auto-deploy changes to Heroku (markdown-demo) ([#484](https://github.com/moyarenko/markdown/issues/484)) ([e425040](https://github.com/moyarenko/markdown/commit/e4250404960f2e5b381c0aa57d3dc5ced52b652a))
* auto-open review apps on Heroku ([#494](https://github.com/moyarenko/markdown/issues/494)) ([427c917](https://github.com/moyarenko/markdown/commit/427c917ec714409259aa94e9899e0437546efa02))
* avoid nesting button in code block ([#587](https://github.com/moyarenko/markdown/issues/587)) ([a9a5d5d](https://github.com/moyarenko/markdown/commit/a9a5d5ded76bcc3ceb23147747342462bad19630))
* Backport support for multi media types to legacy Manual APIs ([#346](https://github.com/moyarenko/markdown/issues/346)) ([45f728e](https://github.com/moyarenko/markdown/commit/45f728eea4120e52eae0f7a06859ce801a1784e9))
* broken api log url ([#460](https://github.com/moyarenko/markdown/issues/460)) ([503154d](https://github.com/moyarenko/markdown/commit/503154dc9cfc6665a1aae6564c8d67f36bf1c69b))
* bug where responses with multiple examples weren't rendered properly ([#599](https://github.com/moyarenko/markdown/issues/599)) ([ef18f54](https://github.com/moyarenko/markdown/commit/ef18f54ae69b2f4d5fc2e06a7175e57b298bce69))
* **deps:** bump [@readme](https://github.com/readme) packages ([#98](https://github.com/moyarenko/markdown/issues/98)) ([8f54042](https://github.com/moyarenko/markdown/commit/8f5404280f628a934c5397bfbf0420861133be54))
* **deps-dev:** bump @babel/core from 7.11.0 to 7.12.9 ([2234951](https://github.com/moyarenko/markdown/commit/2234951bf5c4fdaf94ea14b798f5f80b19d8c736))
* **deps-dev:** bump @babel/core from 7.12.13 to 7.14.6 ([#169](https://github.com/moyarenko/markdown/issues/169)) ([8666a71](https://github.com/moyarenko/markdown/commit/8666a7150fb937d3fb4c2146543cb63649b369e8))
* **deps-dev:** bump @babel/core from 7.6.4 to 7.7.2 ([#373](https://github.com/moyarenko/markdown/issues/373)) ([fa528cb](https://github.com/moyarenko/markdown/commit/fa528cbb50068390800a33a59d072ca91d54a4dc))
* Bump @babel/core from 7.7.2 to 7.7.4 ([#384](https://github.com/moyarenko/markdown/issues/384)) ([580f77e](https://github.com/moyarenko/markdown/commit/580f77eaf578038ff97e9a9f79ae1c43cadd3ac5))
* Bump @babel/core from 7.7.4 to 7.7.5 ([#399](https://github.com/moyarenko/markdown/issues/399)) ([a460110](https://github.com/moyarenko/markdown/commit/a460110cab1b7287d794af4745394513556b26fa))
* **deps-dev:** Bump @babel/core from 7.7.5 to 7.7.7 ([#422](https://github.com/moyarenko/markdown/issues/422)) ([2cbe0ab](https://github.com/moyarenko/markdown/commit/2cbe0ab993c2d2ed574330d7ddef6f1595b7dc14))
* **deps-dev:** Bump @babel/core from 7.7.7 to 7.8.0 ([#437](https://github.com/moyarenko/markdown/issues/437)) ([986189d](https://github.com/moyarenko/markdown/commit/986189d4e77dfd547cb627e8a024b620e06ed6ec))
* **deps-dev:** Bump @babel/core from 7.8.0 to 7.8.3 ([#454](https://github.com/moyarenko/markdown/issues/454)) ([0cd1d23](https://github.com/moyarenko/markdown/commit/0cd1d230b623d5ff300d4cb9c18e57ed8b514a82))
* **deps-dev:** Bump @babel/core from 7.8.3 to 7.8.4 ([#467](https://github.com/moyarenko/markdown/issues/467)) ([00e49d0](https://github.com/moyarenko/markdown/commit/00e49d0027707496543c4e783621287c421bb553))
* **deps-dev:** Bump @babel/core from 7.8.4 to 7.8.6 ([#501](https://github.com/moyarenko/markdown/issues/501)) ([e7aa3f3](https://github.com/moyarenko/markdown/commit/e7aa3f3cc5c63258ba1209e639558ee19f15d975))
* **deps-dev:** Bump @babel/core from 7.8.6 to 7.8.7 ([#509](https://github.com/moyarenko/markdown/issues/509)) ([86192fd](https://github.com/moyarenko/markdown/commit/86192fd2bc8c9fa9f1bee290879e4fa88ab92df4))
* **deps-dev:** Bump @babel/core from 7.8.7 to 7.9.0 ([#556](https://github.com/moyarenko/markdown/issues/556)) ([a4d6f8c](https://github.com/moyarenko/markdown/commit/a4d6f8c2b34b510b28e0817d73fb26ef4d569797))
* **deps-dev:** Bump @babel/core from 7.9.0 to 7.9.6 ([#677](https://github.com/moyarenko/markdown/issues/677)) ([8d277ac](https://github.com/moyarenko/markdown/commit/8d277acc4f326a1ba468f1811ef8e26db51b743d))
* **deps-dev:** bump @babel/plugin-proposal-class-properties ([#811](https://github.com/moyarenko/markdown/issues/811)) ([a791fd5](https://github.com/moyarenko/markdown/commit/a791fd5891c592990de2d286ca8b9951e2c0ed38))
* **deps-dev:** bump @babel/plugin-proposal-object-rest-spread ([#190](https://github.com/moyarenko/markdown/issues/190)) ([0599876](https://github.com/moyarenko/markdown/commit/0599876805f645bf9cc129c1eed28db27915328f))
* **deps-dev:** Bump @babel/plugin-proposal-object-rest-spread ([#553](https://github.com/moyarenko/markdown/issues/553)) ([eb21c31](https://github.com/moyarenko/markdown/commit/eb21c317636a6622aabb6a25f1e9d98ad9b7606e))
* **deps-dev:** Bump @babel/plugin-proposal-object-rest-spread ([#609](https://github.com/moyarenko/markdown/issues/609)) ([6f98e42](https://github.com/moyarenko/markdown/commit/6f98e42d5fe3eb1da2aefc03346f283a582ac6f7))
* **deps-dev:** Bump @babel/plugin-proposal-object-rest-spread ([#707](https://github.com/moyarenko/markdown/issues/707)) ([728689f](https://github.com/moyarenko/markdown/commit/728689fa039cfbbdeb9faae9833f2f79d8bd9002))
* **deps-dev:** bump @babel/preset-env from 7.12.13 to 7.14.7 ([#197](https://github.com/moyarenko/markdown/issues/197)) ([0eb0e19](https://github.com/moyarenko/markdown/commit/0eb0e19b1761fd225d28e6f4ca62ab72b647b4e0))
* **deps-dev:** bump @babel/preset-env from 7.6.3 to 7.7.1 ([#369](https://github.com/moyarenko/markdown/issues/369)) ([f04a680](https://github.com/moyarenko/markdown/commit/f04a68069cda6b14069b6065df6c5ff1d4c531c9))
* Bump @babel/preset-env from 7.7.1 to 7.7.4 ([#383](https://github.com/moyarenko/markdown/issues/383)) ([400a917](https://github.com/moyarenko/markdown/commit/400a917ef0b7765d5964cbd0abc7d8afa92ea754))
* Bump @babel/preset-env from 7.7.4 to 7.7.6 ([#400](https://github.com/moyarenko/markdown/issues/400)) ([3261792](https://github.com/moyarenko/markdown/commit/32617922b0495eeee93fad7738fd62fe779a5b6d))
* Bump @babel/preset-env from 7.7.6 to 7.7.7 ([#413](https://github.com/moyarenko/markdown/issues/413)) ([82ca75c](https://github.com/moyarenko/markdown/commit/82ca75c626dd7454d17d7509187436ee59abffbd))
* **deps-dev:** Bump @babel/preset-env from 7.7.7 to 7.8.3 ([#449](https://github.com/moyarenko/markdown/issues/449)) ([c105f56](https://github.com/moyarenko/markdown/commit/c105f569db1930c446a8de526986748b877bc366))
* **deps-dev:** Bump @babel/preset-env from 7.8.3 to 7.8.4 ([#465](https://github.com/moyarenko/markdown/issues/465)) ([b29a26d](https://github.com/moyarenko/markdown/commit/b29a26d9d66ca70c1b4d69ad583a4872ee4af265))
* **deps-dev:** Bump @babel/preset-env from 7.8.4 to 7.8.6 ([#504](https://github.com/moyarenko/markdown/issues/504)) ([54f23d2](https://github.com/moyarenko/markdown/commit/54f23d2b5a563b89ba99f1295e5a64ad29f4ff1b))
* **deps-dev:** Bump @babel/preset-env from 7.8.6 to 7.8.7 ([#511](https://github.com/moyarenko/markdown/issues/511)) ([d2c4a8e](https://github.com/moyarenko/markdown/commit/d2c4a8e948e8894120f3c5513c2c1a3363f425f9))
* **deps-dev:** Bump @babel/preset-env from 7.8.7 to 7.9.0 ([#555](https://github.com/moyarenko/markdown/issues/555)) ([4a742ad](https://github.com/moyarenko/markdown/commit/4a742adcbb3027ef079fce569b75003651e303be))
* **deps-dev:** Bump @babel/preset-env from 7.9.0 to 7.9.5 ([#593](https://github.com/moyarenko/markdown/issues/593)) ([c40a910](https://github.com/moyarenko/markdown/commit/c40a910cd25edc192c972ce8b020600a467f701e))
* **deps-dev:** Bump @babel/preset-env from 7.9.5 to 7.9.6 ([#676](https://github.com/moyarenko/markdown/issues/676)) ([8e507de](https://github.com/moyarenko/markdown/commit/8e507de24980882e3a0db54d1c164c4f4d62edd2))
* **deps-dev:** bump @babel/preset-react from 7.6.3 to 7.7.0 ([#370](https://github.com/moyarenko/markdown/issues/370)) ([fc7fff7](https://github.com/moyarenko/markdown/commit/fc7fff7c51bc7f5afce66801aa3a523afe236809))
* Bump @babel/preset-react from 7.7.0 to 7.7.4 ([#389](https://github.com/moyarenko/markdown/issues/389)) ([c0c4988](https://github.com/moyarenko/markdown/commit/c0c49883d482e2cd2c93723e49a2202156c67eb7))
* **deps-dev:** Bump @babel/preset-react from 7.7.4 to 7.8.0 ([#443](https://github.com/moyarenko/markdown/issues/443)) ([f288246](https://github.com/moyarenko/markdown/commit/f28824672ee498fbcfa63f8ed322122ee287fdd3))
* **deps-dev:** Bump @babel/preset-react from 7.8.0 to 7.8.3 ([#450](https://github.com/moyarenko/markdown/issues/450)) ([dc9cb32](https://github.com/moyarenko/markdown/commit/dc9cb32eeb91ca000066077043c6841b7e44deaa))
* **deps-dev:** Bump @babel/preset-react from 7.8.3 to 7.9.1 ([#552](https://github.com/moyarenko/markdown/issues/552)) ([80b44dc](https://github.com/moyarenko/markdown/commit/80b44dcca6b6bdc05be47b05a0175f3c8c9ba387))
* **deps-dev:** Bump @babel/preset-react from 7.9.1 to 7.9.4 ([#576](https://github.com/moyarenko/markdown/issues/576)) ([1f7f16f](https://github.com/moyarenko/markdown/commit/1f7f16f0fdfbf1f9ea90e46784ef61d86dc5138d))
* **deps-dev:** bump @commitlint/cli from 11.0.0 to 12.1.4 ([#182](https://github.com/moyarenko/markdown/issues/182)) ([50325ed](https://github.com/moyarenko/markdown/commit/50325edf4388832a9a55d57974b2dc6782c65761))
* **deps-dev:** bump @commitlint/config-angular from 11.0.0 to 12.1.4 ([#162](https://github.com/moyarenko/markdown/issues/162)) ([227c5ed](https://github.com/moyarenko/markdown/commit/227c5edbed986810953c8e19ec345c651f696ee9))
* **deps-dev:** bump @commitlint/config-conventional ([#195](https://github.com/moyarenko/markdown/issues/195)) ([43bc4b4](https://github.com/moyarenko/markdown/commit/43bc4b47db7e7b82d8c162e42011c23960b99078))
* **deps:** bump @readme/emojis from 4.0.0 to 4.0.1 ([#384](https://github.com/moyarenko/markdown/issues/384)) ([048ee9f](https://github.com/moyarenko/markdown/commit/048ee9f913f4dad7422fd3bb979b30d3b0b52aea))
* **deps-dev:** Bump @readme/eslint-config from 1.10.0 to 1.12.0 ([#478](https://github.com/moyarenko/markdown/issues/478)) ([f5a0244](https://github.com/moyarenko/markdown/commit/f5a0244fca612768627c12738693ae1e7d76b538))
* **deps-dev:** Bump @readme/eslint-config from 1.12.0 to 1.13.0 ([#489](https://github.com/moyarenko/markdown/issues/489)) ([85be6bd](https://github.com/moyarenko/markdown/commit/85be6bdf1dcb9b6acf8f750d4a1dfb99706311ae))
* **deps-dev:** Bump @readme/eslint-config from 1.13.0 to 1.14.0 ([#505](https://github.com/moyarenko/markdown/issues/505)) ([3060973](https://github.com/moyarenko/markdown/commit/3060973d5db3ce42875ce2ce427a9be3e826979d))
* **deps-dev:** Bump @readme/eslint-config from 1.14.0 to 1.16.0 ([#535](https://github.com/moyarenko/markdown/issues/535)) ([1abc64c](https://github.com/moyarenko/markdown/commit/1abc64c2f6199915024f25bdc38fa4e33bef03b5))
* Bump @readme/eslint-config from 1.4.2 to 1.5.0 ([#385](https://github.com/moyarenko/markdown/issues/385)) ([deae3ad](https://github.com/moyarenko/markdown/commit/deae3adc33a4328d6de9a7b509b2a06413eb76f2))
* Bump @readme/eslint-config from 1.7.0 to 1.8.0 ([#406](https://github.com/moyarenko/markdown/issues/406)) ([dd34213](https://github.com/moyarenko/markdown/commit/dd3421349f750ec6aff3a3d4ef726ade6e427bc9))
* **deps-dev:** Bump @readme/eslint-config from 1.8.0 to 1.8.1 ([#416](https://github.com/moyarenko/markdown/issues/416)) ([2564103](https://github.com/moyarenko/markdown/commit/2564103f921f17a3ea5d9c0f63efef814994035b))
* **deps-dev:** Bump @readme/eslint-config from 1.8.1 to 1.9.0 ([#424](https://github.com/moyarenko/markdown/issues/424)) ([ef98735](https://github.com/moyarenko/markdown/commit/ef98735e11a4d050f3a9b9700c580d5fe841f4c2))
* **deps-dev:** Bump @readme/eslint-config from 1.9.0 to 1.9.1 ([#445](https://github.com/moyarenko/markdown/issues/445)) ([906ff84](https://github.com/moyarenko/markdown/commit/906ff842061326a980e017b1e4ee2acffe3d7673))
* **deps-dev:** Bump @readme/eslint-config from 1.9.1 to 1.10.0 ([#448](https://github.com/moyarenko/markdown/issues/448)) ([2f1781b](https://github.com/moyarenko/markdown/commit/2f1781b419a761f07d2724aa64a8d5111e146d6e))
* **deps-dev:** Bump @readme/eslint-config from 2.0.0 to 2.0.4 ([#610](https://github.com/moyarenko/markdown/issues/610)) ([abe119a](https://github.com/moyarenko/markdown/commit/abe119ab4e9cb9086ec1f6edff3c3b537b2c7324))
* **deps-dev:** bump @readme/eslint-config from 3.4.0 to 3.6.2 ([#64](https://github.com/moyarenko/markdown/issues/64)) ([ab61909](https://github.com/moyarenko/markdown/commit/ab61909f99504adca19995e21965a0222a60c20a))
* **deps-dev:** Bump @readme/oas-examples from 2.1.1 to 3.0.0 ([#531](https://github.com/moyarenko/markdown/issues/531)) ([b3568a6](https://github.com/moyarenko/markdown/commit/b3568a69c048900515df026c86e7441c7faf9de0))
* **deps-dev:** bump @readme/oas-examples from 3.0.0 to 3.4.0 ([#774](https://github.com/moyarenko/markdown/issues/774)) ([7e4e12d](https://github.com/moyarenko/markdown/commit/7e4e12d09790199572dc4692a53aee8754dec9ce))
* **deps-dev:** bump @readme/variable from 11.0.0 to 13.4.12 ([#188](https://github.com/moyarenko/markdown/issues/188)) ([16724d8](https://github.com/moyarenko/markdown/commit/16724d84940b5211716264577a080a5d95d7dbbe))
* **deps-dev:** bump @readme/variable from 13.5.4 to 13.6.0 ([#307](https://github.com/moyarenko/markdown/issues/307)) ([51da52a](https://github.com/moyarenko/markdown/commit/51da52aa3a241c6f927cde5c60bcd0186a1da1ba))
* **deps-dev:** bump @readme/variable to v10.0.7 ([d6006d6](https://github.com/moyarenko/markdown/commit/d6006d6867ad941dcc3cebb109cf9784aa22be57))
* **deps-dev:** bump @testing-library/react from 12.1.2 to 12.1.5 ([#504](https://github.com/moyarenko/markdown/issues/504)) ([a9ffb70](https://github.com/moyarenko/markdown/commit/a9ffb708ee4429710443bc9cd84ce0bcf0dfa954))
* **deps:** bump `rehype` plugins in @readme/markdown ([#540](https://github.com/moyarenko/markdown/issues/540)) ([2f9b998](https://github.com/moyarenko/markdown/commit/2f9b9982c921a81307373cee38ef88f62345d382))
* **deps:** bump actions/checkout from 2.3.4 to 3 ([#442](https://github.com/moyarenko/markdown/issues/442)) ([dd78e22](https://github.com/moyarenko/markdown/commit/dd78e2289e141e8b116c3bcbc163eb2676cab0db))
* **deps:** bump actions/checkout from v1 to v2.2.0 ([#780](https://github.com/moyarenko/markdown/issues/780)) ([e87fa1a](https://github.com/moyarenko/markdown/commit/e87fa1a7d9496d6f892bcd76e020d9296c2368c5))
* **deps:** bump actions/checkout from v2.2.0 to v2.3.1 ([#800](https://github.com/moyarenko/markdown/issues/800)) ([211417c](https://github.com/moyarenko/markdown/commit/211417cda6e9ef0a2114a759a2f640b0c5f0131f))
* **deps:** bump actions/setup-node from 2.1.2 to 2.2.0 ([#205](https://github.com/moyarenko/markdown/issues/205)) ([decc3bd](https://github.com/moyarenko/markdown/commit/decc3bdb24fd904777e7a96296539ff06a835b2f))
* **deps:** bump actions/setup-node from 2.2.0 to 2.3.0 ([#235](https://github.com/moyarenko/markdown/issues/235)) ([95e3a2b](https://github.com/moyarenko/markdown/commit/95e3a2b6599b49993df3106cbd20efb46d18e873))
* **deps:** bump actions/setup-node from 2.3.0 to 2.4.0 ([#251](https://github.com/moyarenko/markdown/issues/251)) ([c013b36](https://github.com/moyarenko/markdown/commit/c013b360570875390f44cfde458ece7a6d565c1a))
* **deps:** bump actions/setup-node from 2.4.0 to 3 ([#440](https://github.com/moyarenko/markdown/issues/440)) ([d134aab](https://github.com/moyarenko/markdown/commit/d134aab5447f34cb695bb513f47e1b34f1164442))
* **deps:** bump actions/setup-node from v1 to v2.0.0 ([#781](https://github.com/moyarenko/markdown/issues/781)) ([6c1e9bd](https://github.com/moyarenko/markdown/commit/6c1e9bd482e9da292de629fe49423f302170c661))
* **deps:** bump actions/setup-node from v2.0.0 to v2.1.0 ([#810](https://github.com/moyarenko/markdown/issues/810)) ([31d5a07](https://github.com/moyarenko/markdown/commit/31d5a07460976497627567bcc61ad7ad53742911))
* **deps:** bump actions/setup-node from v2.1.0 to v2.1.1 ([044c98b](https://github.com/moyarenko/markdown/commit/044c98bf57c9676e179b02a73f9f15318fa0040c))
* **deps:** Bump async-retry from 1.2.3 to 1.3.1 ([#438](https://github.com/moyarenko/markdown/issues/438)) ([575117a](https://github.com/moyarenko/markdown/commit/575117a73c3882214c68bd002e23a76635d781bf))
* **deps-dev:** Bump auto-changelog from 1.16.2 to 1.16.3 ([#573](https://github.com/moyarenko/markdown/issues/573)) ([a1426f9](https://github.com/moyarenko/markdown/commit/a1426f9693a8e44b424702abf11d62d9fda435f9))
* **deps-dev:** Bump auto-changelog from 1.16.3 to 1.16.4 ([#581](https://github.com/moyarenko/markdown/issues/581)) ([464d75b](https://github.com/moyarenko/markdown/commit/464d75b113782a8a270fa5b67586ac1cdf3ea954))
* **deps-dev:** Bump auto-changelog from 1.16.4 to 2.0.0 ([#692](https://github.com/moyarenko/markdown/issues/692)) ([b8aefee](https://github.com/moyarenko/markdown/commit/b8aefeecfeb2ce78e8b1520482360a5ff9be720c))
* **deps-dev:** bump auto-changelog from 2.0.0 to 2.1.0 ([#801](https://github.com/moyarenko/markdown/issues/801)) ([928d8c0](https://github.com/moyarenko/markdown/commit/928d8c07a10b81348eeca3e7cfc6082083977a87))
* **deps-dev:** Bump babel-eslint from 10.0.3 to 10.1.0 ([#502](https://github.com/moyarenko/markdown/issues/502)) ([3292167](https://github.com/moyarenko/markdown/commit/3292167fc772e584ca0a61ed33eb7d303d7962f6))
* **deps-dev:** Bump babel-jest from 24.9.0 to 25.1.0 ([#455](https://github.com/moyarenko/markdown/issues/455)) ([083ca1c](https://github.com/moyarenko/markdown/commit/083ca1c17aa95a76a56f11e1c4094dc2dfd19eae))
* **deps-dev:** Bump babel-jest from 25.1.0 to 25.2.4 ([#570](https://github.com/moyarenko/markdown/issues/570)) ([3edda2d](https://github.com/moyarenko/markdown/commit/3edda2d13579cce6ea3bc5b20f78f1ae139f81a6))
* **deps-dev:** Bump babel-jest from 25.2.4 to 25.2.6 ([#582](https://github.com/moyarenko/markdown/issues/582)) ([5a4e354](https://github.com/moyarenko/markdown/commit/5a4e3540996bc462b15b2d8de89fe0af9c73ada6))
* **deps-dev:** Bump babel-jest from 25.2.6 to 25.4.0 ([#615](https://github.com/moyarenko/markdown/issues/615)) ([532f8ad](https://github.com/moyarenko/markdown/commit/532f8adc0c4c9e12c59d95638d2745d8946e5932))
* **deps-dev:** bump babel-jest from 26.0.1 to 26.1.0 ([#814](https://github.com/moyarenko/markdown/issues/814)) ([bf4d56b](https://github.com/moyarenko/markdown/commit/bf4d56b3a0cb17c8abc193ba16e871a4c1235071))
* **deps-dev:** bump babel-jest from 26.6.3 to 27.0.5 ([#187](https://github.com/moyarenko/markdown/issues/187)) ([dd26212](https://github.com/moyarenko/markdown/commit/dd262123e9dc6af8147c1250907014b2d92d8054))
* **deps-dev:** Bump babel-loader from 8.0.6 to 8.1.0 ([#569](https://github.com/moyarenko/markdown/issues/569)) ([e006edc](https://github.com/moyarenko/markdown/commit/e006edcf0d6a15081119347d9afc4595dcd915de))
* **deps:** Bump codemirror from 5.49.2 to 5.50.0 ([#412](https://github.com/moyarenko/markdown/issues/412)) ([d7b1d61](https://github.com/moyarenko/markdown/commit/d7b1d613d521e2a86420ae79a3e29a9212edf4fc))
* **deps:** Bump codemirror from 5.50.0 to 5.50.2 ([#427](https://github.com/moyarenko/markdown/issues/427)) ([1722353](https://github.com/moyarenko/markdown/commit/172235355c3c6bbaefa8d9092b13084009cd629b))
* **deps:** Bump codemirror from 5.50.2 to 5.51.0 ([#456](https://github.com/moyarenko/markdown/issues/456)) ([46d2719](https://github.com/moyarenko/markdown/commit/46d27197e46440d2f4b97788131a32af617c462d))
* **deps:** Bump codemirror from 5.51.0 to 5.52.0 ([#492](https://github.com/moyarenko/markdown/issues/492)) ([2459950](https://github.com/moyarenko/markdown/commit/2459950710201f2dbb47ed124f0cabc1ddf53531))
* **deps:** Bump codemirror from 5.52.0 to 5.52.2 ([#549](https://github.com/moyarenko/markdown/issues/549)) ([b9d6576](https://github.com/moyarenko/markdown/commit/b9d657617d431e7b7bda25381b46ebda679afcbf))
* **deps:** Bump codemirror from 5.52.2 to 5.53.2 ([#635](https://github.com/moyarenko/markdown/issues/635)) ([aae6ae2](https://github.com/moyarenko/markdown/commit/aae6ae275892714028c74dd784b47c75cc331c13))
* **deps:** bump codemirror from 5.53.2 to 5.54.0 ([#788](https://github.com/moyarenko/markdown/issues/788)) ([eb44fac](https://github.com/moyarenko/markdown/commit/eb44fac090f1eff89167469c6b863ee969524479))
* **deps-dev:** bump codemirror from 5.59.2 to 5.62.0 ([#177](https://github.com/moyarenko/markdown/issues/177)) ([35eb916](https://github.com/moyarenko/markdown/commit/35eb9165940c818aa848f37bc6a1dd317968fded))
* **deps-dev:** bump core-js from 3.8.3 to 3.15.2 ([#201](https://github.com/moyarenko/markdown/issues/201)) ([6f8c953](https://github.com/moyarenko/markdown/commit/6f8c9536488ea7b030cae18480fef775c6037110))
* Bump css-loader from 3.2.0 to 3.2.1 ([#401](https://github.com/moyarenko/markdown/issues/401)) ([4a135ed](https://github.com/moyarenko/markdown/commit/4a135edbadbecdea7a6ea65340114ee7618e5bcd))
* Bump css-loader from 3.2.1 to 3.3.2 ([#405](https://github.com/moyarenko/markdown/issues/405)) ([f772c49](https://github.com/moyarenko/markdown/commit/f772c49f0fb37b375bdfe7c072832d0f424050b7))
* **deps:** Bump css-loader from 3.3.2 to 3.4.0 ([#411](https://github.com/moyarenko/markdown/issues/411)) ([3502e5c](https://github.com/moyarenko/markdown/commit/3502e5c01c1f165419f3fd2d10dea617443de878))
* **deps-dev:** Bump css-loader from 3.4.0 to 3.4.1 ([#426](https://github.com/moyarenko/markdown/issues/426)) ([710dd4a](https://github.com/moyarenko/markdown/commit/710dd4a98ce26dbfa5ba7acd7d5d102e57a06ea2))
* **deps-dev:** Bump css-loader from 3.4.1 to 3.4.2 ([#440](https://github.com/moyarenko/markdown/issues/440)) ([fbfcf51](https://github.com/moyarenko/markdown/commit/fbfcf51b552c01f3f0421c263ce14636ccdc203d))
* **deps-dev:** bump css-loader from 3.6.0 to 5.0.1 ([2849a7d](https://github.com/moyarenko/markdown/commit/2849a7dfd58603d842933cdf3c5834b610774a47))
* **deps-dev:** bump css-loader from 5.0.2 to 6.2.0 ([#229](https://github.com/moyarenko/markdown/issues/229)) ([325396b](https://github.com/moyarenko/markdown/commit/325396b299fd12bc03f5a763d938e12f6aefc1a7))
* **deps-dev:** Bump enzyme from 3.10.0 to 3.11.0 ([#408](https://github.com/moyarenko/markdown/issues/408)) ([9fa958c](https://github.com/moyarenko/markdown/commit/9fa958c1a655a2d509d7b255797143f5d725e333))
* **deps-dev:** Bump enzyme-adapter-react-16 from 1.15.1 to 1.15.2 ([#417](https://github.com/moyarenko/markdown/issues/417)) ([ea4f5cc](https://github.com/moyarenko/markdown/commit/ea4f5ccf93d40b17d934be952fb750c2f9e62503))
* Bump eslint from 6.6.0 to 6.7.1 ([#386](https://github.com/moyarenko/markdown/issues/386)) ([5340dde](https://github.com/moyarenko/markdown/commit/5340dde1830711e7fdd9ecb4c153a757a2e7069e))
* Bump eslint from 6.7.1 to 6.7.2 ([#395](https://github.com/moyarenko/markdown/issues/395)) ([6179015](https://github.com/moyarenko/markdown/commit/61790156133da41aaf317d55de0b9018018aef51))
* **deps-dev:** Bump eslint from 6.7.2 to 6.8.0 ([#410](https://github.com/moyarenko/markdown/issues/410)) ([7595b99](https://github.com/moyarenko/markdown/commit/7595b99c770f5a089be51d799c989ecd3fa0d444))
* **deps-dev:** Bump eslint from 7.0.0 to 7.1.0 ([#709](https://github.com/moyarenko/markdown/issues/709)) ([e1652e3](https://github.com/moyarenko/markdown/commit/e1652e304ee2b70980061469ab1d6f08c0a3867f))
* **deps-dev:** bump eslint from 7.1.0 to 7.2.0 ([#773](https://github.com/moyarenko/markdown/issues/773)) ([22e2eca](https://github.com/moyarenko/markdown/commit/22e2ecad068e8014debcc49e9944665478afc2af))
* **deps-dev:** bump eslint from 7.19.0 to 7.29.0 ([#184](https://github.com/moyarenko/markdown/issues/184)) ([7e032cf](https://github.com/moyarenko/markdown/commit/7e032cfc4b91ac9b0f43e0931ae770d8ff54fcbe))
* **deps-dev:** bump eslint from 7.2.0 to 7.3.1 ([#813](https://github.com/moyarenko/markdown/issues/813)) ([172d3a0](https://github.com/moyarenko/markdown/commit/172d3a0deb99c896b178d578e155307d03bf2419))
* **deps-dev:** bump eslint from 7.29.0 to 7.30.0 ([#209](https://github.com/moyarenko/markdown/issues/209)) ([5309d0e](https://github.com/moyarenko/markdown/commit/5309d0e2cc84e2eb6ad971d5d58ace789c1cedd3))
* **deps-dev:** bump eslint from 7.31.0 to 7.32.0 ([#248](https://github.com/moyarenko/markdown/issues/248)) ([76e5a79](https://github.com/moyarenko/markdown/commit/76e5a7970c729a1198fec21c97e6eaacbc81b6a5))
* Bump eslint-plugin-jest from 23.0.3 to 23.0.4 ([#391](https://github.com/moyarenko/markdown/issues/391)) ([d49a802](https://github.com/moyarenko/markdown/commit/d49a802f96b91343cb471cb1de133c4ae85b4d64))
* Bump eslint-plugin-jest from 23.0.4 to 23.1.1 ([#394](https://github.com/moyarenko/markdown/issues/394)) ([5565e38](https://github.com/moyarenko/markdown/commit/5565e3821a9f042af116f7c5aca2dbf0fee9ecd4))
* Bump eslint-plugin-react from 7.16.0 to 7.17.0 ([#392](https://github.com/moyarenko/markdown/issues/392)) ([da75860](https://github.com/moyarenko/markdown/commit/da758607cc37bb601fad1d60419164560c4b80db))
* Bump fetch-har from 2.0.0 to 2.1.0 ([#382](https://github.com/moyarenko/markdown/issues/382)) ([69b2e89](https://github.com/moyarenko/markdown/commit/69b2e890b573044cf3e90e5947b422317e1efc67))
* **deps:** Bump fetch-har from 2.2.1 to 2.3.0 ([#487](https://github.com/moyarenko/markdown/issues/487)) ([191782e](https://github.com/moyarenko/markdown/commit/191782e5515ad2ee6e5ac8f1c00b969fdaf09510))
* **deps:** Bump fetch-har from 2.3.0 to 2.3.1 ([#550](https://github.com/moyarenko/markdown/issues/550)) ([0489556](https://github.com/moyarenko/markdown/commit/0489556ba5fca405dbeaac15b6bd1b61ecdfd47d))
* **deps:** bump fetch-har from 2.3.1 to 2.3.2 ([#786](https://github.com/moyarenko/markdown/issues/786)) ([66bcfe9](https://github.com/moyarenko/markdown/commit/66bcfe996b171be266c35063952f5e8876094001))
* **deps-dev:** Bump gh-pages from 2.1.1 to 2.2.0 ([#442](https://github.com/moyarenko/markdown/issues/442)) ([80907f1](https://github.com/moyarenko/markdown/commit/80907f1da9e2b2768923495949a689a73282b416))
* **deps:** bump hast-util-sanitize from 2.0.3 to 4.0.0 ([#156](https://github.com/moyarenko/markdown/issues/156)) ([e5fda67](https://github.com/moyarenko/markdown/commit/e5fda673e975259b3b09a8260b93b52240c970d4))
* **deps:** bump httpsnippet from 1.19.1 to 1.20.0 ([#778](https://github.com/moyarenko/markdown/issues/778)) ([44ff101](https://github.com/moyarenko/markdown/commit/44ff101c69089157c8031eae6806508575f37897))
* **deps-dev:** bump husky from 4.3.8 to 7.0.1 ([#208](https://github.com/moyarenko/markdown/issues/208)) ([1f09f4a](https://github.com/moyarenko/markdown/commit/1f09f4ad0a308ac3b82e4663e59259baa73ee068))
* **deps-dev:** Bump jest from 24.9.0 to 25.1.0 ([#457](https://github.com/moyarenko/markdown/issues/457)) ([817de29](https://github.com/moyarenko/markdown/commit/817de295e03eb1103c653a19592c2ddf70b96dd8))
* **deps-dev:** Bump jest from 25.1.0 to 25.2.4 ([#571](https://github.com/moyarenko/markdown/issues/571)) ([67e29a2](https://github.com/moyarenko/markdown/commit/67e29a203459aa541c20c3918bfe32d505101c67))
* **deps-dev:** Bump jest from 25.2.4 to 25.3.0 ([#594](https://github.com/moyarenko/markdown/issues/594)) ([134d5e8](https://github.com/moyarenko/markdown/commit/134d5e819483d4a627a57aa0933a5aff249ed293))
* **deps-dev:** Bump jest from 25.3.0 to 25.4.0 ([#612](https://github.com/moyarenko/markdown/issues/612)) ([3c63767](https://github.com/moyarenko/markdown/commit/3c637679e63bee5b32f97e893400b3bc7c739b00))
* **deps-dev:** Bump jest from 25.4.0 to 26.0.1 ([#694](https://github.com/moyarenko/markdown/issues/694)) ([8c901c6](https://github.com/moyarenko/markdown/commit/8c901c68293b2d9243f604255d8342fe79f23674))
* **deps-dev:** bump jest from 26.0.1 to 26.1.0 ([#815](https://github.com/moyarenko/markdown/issues/815)) ([6afc047](https://github.com/moyarenko/markdown/commit/6afc04796d0466a0cd274b5799e2b8ecf7335e03))
* **deps-dev:** bump jest-image-snapshot from 4.3.0 to 4.5.1 ([#211](https://github.com/moyarenko/markdown/issues/211)) ([c31fd91](https://github.com/moyarenko/markdown/commit/c31fd916c0f89bf41bac00697d94a06b89f9f5f7))
* **deps-dev:** bump jest-image-snapshot to ^5.1.0 ([91243a5](https://github.com/moyarenko/markdown/commit/91243a52159212ce3ffe541fb38bbc02240475e9))
* **deps-dev:** bump lerna from 3.18.3 to 3.18.4 ([#375](https://github.com/moyarenko/markdown/issues/375)) ([706429a](https://github.com/moyarenko/markdown/commit/706429a068a927a4ffb2c9a0d29f4ad61caf9257))
* Bump lerna from 3.18.4 to 3.19.0 ([#390](https://github.com/moyarenko/markdown/issues/390)) ([894d372](https://github.com/moyarenko/markdown/commit/894d3721917cfe4d4f2401fe7a10b94acce652ac))
* **deps-dev:** Bump lerna from 3.19.0 to 3.20.2 ([#428](https://github.com/moyarenko/markdown/issues/428)) ([5ad2aaf](https://github.com/moyarenko/markdown/commit/5ad2aaf353c265ff9622856fe331dbfdd174a448))
* **deps-dev:** Bump lerna from 3.20.2 to 3.22.0 ([#706](https://github.com/moyarenko/markdown/issues/706)) ([dba4a99](https://github.com/moyarenko/markdown/commit/dba4a99898b7720e5229a8c63c4754a3d5bfbfbd))
* **deps-dev:** bump lerna from 3.22.0 to 3.22.1 ([#805](https://github.com/moyarenko/markdown/issues/805)) ([a9d5823](https://github.com/moyarenko/markdown/commit/a9d582326b9bddd303adadcde05c90ffa8e3ce90))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/api-logs ([#843](https://github.com/moyarenko/markdown/issues/843)) ([50d7600](https://github.com/moyarenko/markdown/commit/50d7600c4a2d9332667676104367b38a03cbb5d6))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/markdown ([#844](https://github.com/moyarenko/markdown/issues/844)) ([0088cd9](https://github.com/moyarenko/markdown/commit/0088cd9a394e8edb5c854fa77bf83e90f35266ba))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/oas-to-har ([#840](https://github.com/moyarenko/markdown/issues/840)) ([9a7ffa7](https://github.com/moyarenko/markdown/commit/9a7ffa7b79c2c2e501774d11568f7f78efea9e35))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/variable ([#839](https://github.com/moyarenko/markdown/issues/839)) ([fc545eb](https://github.com/moyarenko/markdown/commit/fc545ebe10ac6e1011c2d66a376d10b87705ffa7))
* **deps:** bump lodash in /packages/api-explorer ([#837](https://github.com/moyarenko/markdown/issues/837)) ([1f62788](https://github.com/moyarenko/markdown/commit/1f62788fe78bb94b4360a451d359149a0280d676))
* **deps:** bump lodash in /packages/markdown-magic ([#841](https://github.com/moyarenko/markdown/issues/841)) ([aa44d36](https://github.com/moyarenko/markdown/commit/aa44d36a16da6acdd83c606221432b04bc294c1b))
* **deps:** bump lodash in /packages/oas-extensions ([#836](https://github.com/moyarenko/markdown/issues/836)) ([d0e2f34](https://github.com/moyarenko/markdown/commit/d0e2f3442421752b406d8ec99a1beb93ac04f45d))
* **deps:** bump lodash in /packages/oas-to-snippet ([#842](https://github.com/moyarenko/markdown/issues/842)) ([e71eb63](https://github.com/moyarenko/markdown/commit/e71eb63245af070b720d9b41059da300f8fa8198))
* **deps:** bump lodash in /packages/syntax-highlighter ([#845](https://github.com/moyarenko/markdown/issues/845)) ([07759a6](https://github.com/moyarenko/markdown/commit/07759a6b98768373c72490b99f318378f95d9a67))
* **deps-dev:** bump mini-css-extract-plugin from 1.3.6 to 2.1.0 ([#214](https://github.com/moyarenko/markdown/issues/214)) ([427e304](https://github.com/moyarenko/markdown/commit/427e3044e9cc04b38bef927b10ae28d040042c87))
* **deps:** bump minimist from 1.2.5 to 1.2.6 ([#458](https://github.com/moyarenko/markdown/issues/458)) ([adc55c2](https://github.com/moyarenko/markdown/commit/adc55c2a54295ecd8978d7d1d0589c18ed724d3c))
* **deps-dev:** Bump nock from 11.7.0 to 11.7.1 ([#425](https://github.com/moyarenko/markdown/issues/425)) ([a2eeba8](https://github.com/moyarenko/markdown/commit/a2eeba8b7a566620e62895509ed75dcadf1a25ec))
* **deps-dev:** Bump nock from 11.7.1 to 11.7.2 ([#441](https://github.com/moyarenko/markdown/issues/441)) ([06d8b76](https://github.com/moyarenko/markdown/commit/06d8b76567d7b9a051289191f19ebae4b49be644))
* **deps-dev:** Bump nock from 11.7.2 to 11.8.2 ([#475](https://github.com/moyarenko/markdown/issues/475)) ([86b1f1f](https://github.com/moyarenko/markdown/commit/86b1f1f48d75c075e99af9dfcc1683f0bd797f76))
* **deps-dev:** Bump nock from 11.8.2 to 12.0.0 ([#480](https://github.com/moyarenko/markdown/issues/480)) ([26a4c1f](https://github.com/moyarenko/markdown/commit/26a4c1f1ad2e687d18d9b786947372db9f68a191))
* **deps-dev:** Bump nock from 12.0.0 to 12.0.1 ([#488](https://github.com/moyarenko/markdown/issues/488)) ([f49c5ee](https://github.com/moyarenko/markdown/commit/f49c5eed2f85641e92278ced243a1eb54643e094))
* **deps-dev:** Bump nock from 12.0.1 to 12.0.2 ([#497](https://github.com/moyarenko/markdown/issues/497)) ([75e5488](https://github.com/moyarenko/markdown/commit/75e5488dc337ea16ab879976072a6367ecf6b9ad))
* **deps-dev:** bump nock from 12.0.2 to 12.0.3 ([#785](https://github.com/moyarenko/markdown/issues/785)) ([8d9028a](https://github.com/moyarenko/markdown/commit/8d9028af358919ef76167f0841fc019797591a8a))
* **deps-dev:** bump nock from 12.0.3 to 13.0.2 ([#827](https://github.com/moyarenko/markdown/issues/827)) ([12a52b5](https://github.com/moyarenko/markdown/commit/12a52b5b4df8aa07b947aac994346b33d554017d))
* Bump node-fetch from 2.0.0-alpha.9 to 2.6.0 ([#280](https://github.com/moyarenko/markdown/issues/280)) ([d7e826f](https://github.com/moyarenko/markdown/commit/d7e826f968ad402b002cae13b91f6bc5c8297f5e))
* **deps-dev:** Bump node-sass from 4.13.0 to 4.13.1 ([#…
moyarenko pushed a commit to moyarenko/markdown that referenced this pull request Nov 3, 2022
## Version 1.0.0

### ⚠ BREAKING CHANGES

* CHANGE: Certain tags and a lot of attributes will be stripped from html blocks

### 📘 Tests & Docs

* add category to each page ([#171](https://github.com/moyarenko/markdown/issues/171)) ([9a5e1c6](https://github.com/moyarenko/markdown/commit/9a5e1c613113f04523bbb7d83eacd0621fde570a))
* add link for emoji list ([#547](https://github.com/moyarenko/markdown/issues/547)) ([bab15ff](https://github.com/moyarenko/markdown/commit/bab15ff32b750b028e14fe18642b37b0ba2137ea))
* **readme:** add Local Development section ([#283](https://github.com/moyarenko/markdown/issues/283)) ([f2414ed](https://github.com/moyarenko/markdown/commit/f2414ed570961c56b683c1547466265cf4ff596f))
* adding a code of conduct ([b00b1f5](https://github.com/moyarenko/markdown/commit/b00b1f5b368970db97577a13a84bedbffc73afe5))
* adding a new oneOf example for a nested oneOf ([31c2902](https://github.com/moyarenko/markdown/commit/31c29028ce49c967ebe3a272fa12068aa6638689))
* adding a pull request template ([5818d33](https://github.com/moyarenko/markdown/commit/5818d33e038143b96d94cfce0db74b68d6c887d4))
* adding a security policy ([bbc81a2](https://github.com/moyarenko/markdown/commit/bbc81a26d3a94c57e5345325d8cb0780d06bd467))
* align status badge ([f43f035](https://github.com/moyarenko/markdown/commit/f43f0354c67b9f2778c1f33272854d565af215f1))
* also delete SECURITY.md ([6b0eb1f](https://github.com/moyarenko/markdown/commit/6b0eb1f2bc3d973dfe028fa54af213dad0c3c14d))
* delete CoC in favor of shared org files ([6eb18ac](https://github.com/moyarenko/markdown/commit/6eb18acce1cf5f77fd5f6417abea245c5bad996e))
* **readme:** formatting and copy edits ([ce9d154](https://github.com/moyarenko/markdown/commit/ce9d1549445cda85998ad6380f7168ce26231ff9))
* graphql/JSX lang support, contributing ([#448](https://github.com/moyarenko/markdown/issues/448)) ([e3c8b43](https://github.com/moyarenko/markdown/commit/e3c8b435cdb7f97aa5ffb566c7e0e3a3fdb25534))
* make cookie example better ([#825](https://github.com/moyarenko/markdown/issues/825)) ([89480ee](https://github.com/moyarenko/markdown/commit/89480ee725136e148702e2fd66189774c4325874))
* **callouts:** minor updates ([#445](https://github.com/moyarenko/markdown/issues/445)) ([f99df00](https://github.com/moyarenko/markdown/commit/f99df00ea2c11e9cae7d7023ae0795b991b04651))
* remove unnecessary slug parameter, newlines ([8e0ac53](https://github.com/moyarenko/markdown/commit/8e0ac533255f9a95b956fbaaccb3c6957767ea11)), closes [/github.com/readmeio/markdown/pull/173#issuecomment-867169250](https://github.com/moyarenko//github.com/readmeio/markdown/pull/173/issues/issuecomment-867169250)
* removing the checklist from our pr template ([4d3afff](https://github.com/moyarenko/markdown/commit/4d3affffa6796438eba7d7158f85355ff7ac8294))
* sync exported markdown to RDMD site ([#105](https://github.com/moyarenko/markdown/issues/105)) ([8651c88](https://github.com/moyarenko/markdown/commit/8651c883beedb9711258f1a1b3f4799fd110c4c5))
* update custom CSS guidance ([#172](https://github.com/moyarenko/markdown/issues/172)) ([5c3725d](https://github.com/moyarenko/markdown/commit/5c3725d4bafd5c11fa3bb1cd93b6d725772d31a7))
* update docs to latest markdown ([#107](https://github.com/moyarenko/markdown/issues/107)) ([239d0df](https://github.com/moyarenko/markdown/commit/239d0df022aecd9996db9b00f86b9ea4f2442341))
* update link ([d90138d](https://github.com/moyarenko/markdown/commit/d90138d855582cbd7aab4c229b83a3d88de9e933))
* update links, minor edits ([57e1fd5](https://github.com/moyarenko/markdown/commit/57e1fd5e114d2fd9e50987485cdf1f0c872aec6a))
* update status badge ([d6d7238](https://github.com/moyarenko/markdown/commit/d6d723859ded6ea42b66aa52926014d09f758980))
* update the PR template ([#127](https://github.com/moyarenko/markdown/issues/127)) ([72c4475](https://github.com/moyarenko/markdown/commit/72c44756b674b0676be1dce951677b062fb22542))
* updating the http-status-codes readme ([7675fce](https://github.com/moyarenko/markdown/commit/7675fce686dc75b3c7bdb05fe42ca25f5bb69192))
* updating the markdown-magic readme ([3dbfaa0](https://github.com/moyarenko/markdown/commit/3dbfaa08cba60114a970692e66e3a1858bba6794))
* updating the pr template ([#462](https://github.com/moyarenko/markdown/issues/462)) ([7b513e0](https://github.com/moyarenko/markdown/commit/7b513e0fbca17afa03d8b89a61429133b852b487))
* updating the readme ([8092dfb](https://github.com/moyarenko/markdown/commit/8092dfbcafb84facf924697f029aaaea4abf7a72))
* updating the root readme a bit ([895a637](https://github.com/moyarenko/markdown/commit/895a6379f38469b3a02370ff0b6ebd8428941782))

### ✨ New & Improved

* **markdown:**  ([#660](https://github.com/moyarenko/markdown/issues/660)) ([268a282](https://github.com/moyarenko/markdown/commit/268a28242dbb94e526db8d73989f278745f0933b)), closes [readmeio/readme#2700](https://github.com/readmeio/readme/issues/2700)
* ✨ implement isomorphic markdown parser package ([#537](https://github.com/moyarenko/markdown/issues/537)) ([8fa38e3](https://github.com/moyarenko/markdown/commit/8fa38e3684d69ddd16d5a710cc008a8d4d254b1c))
* **explorer:** add .markdown-body class to excerpt ([#665](https://github.com/moyarenko/markdown/issues/665)) ([cd1daaf](https://github.com/moyarenko/markdown/commit/cd1daafa1cfbbfc62ff112b2dc495744d17476bc))
* **release:** add a next channel ([#91](https://github.com/moyarenko/markdown/issues/91)) ([5938622](https://github.com/moyarenko/markdown/commit/59386226fc8785f159fe97464ad4aef48dbb58b8))
* add class for blank-line ([#457](https://github.com/moyarenko/markdown/issues/457)) ([347cfa6](https://github.com/moyarenko/markdown/commit/347cfa60cb45a23d3cb50671290b168bd91ce006))
* add dark option for code blocks ([#284](https://github.com/moyarenko/markdown/issues/284)) ([885b844](https://github.com/moyarenko/markdown/commit/885b8441a6ad423b4d59a14a7430c882f5ea1fad))
* add escape type ([#489](https://github.com/moyarenko/markdown/issues/489)) ([dd3d851](https://github.com/moyarenko/markdown/commit/dd3d851f2d0b165c851adf2469ef1b207e881745))
* add lazy flag for images ([#594](https://github.com/moyarenko/markdown/issues/594)) ([fda31b8](https://github.com/moyarenko/markdown/commit/fda31b8dcc60706545d5e42e0c4ebbb0c06cdb5b))
* add safeMode flag ([#517](https://github.com/moyarenko/markdown/issues/517)) ([4e79005](https://github.com/moyarenko/markdown/commit/4e79005f3cc0c1820536657059ad3d2083a66e1d))
* add support for syntax highlighting more languages  ([#728](https://github.com/moyarenko/markdown/issues/728)) ([13cb4e4](https://github.com/moyarenko/markdown/commit/13cb4e4eb06e8f235f4a0acc3ce2f78dcd2ab29a))
* add width support to image compiler ([#417](https://github.com/moyarenko/markdown/issues/417)) ([8fc2d50](https://github.com/moyarenko/markdown/commit/8fc2d500900c406f6685f3ed5596257fcaef9b39))
* add yaml compiler ([#509](https://github.com/moyarenko/markdown/issues/509)) ([ac238d1](https://github.com/moyarenko/markdown/commit/ac238d1d58164071eafeb893992662e4e00c6aec))
* adding a handful of new status codes ([#520](https://github.com/moyarenko/markdown/issues/520)) ([35db543](https://github.com/moyarenko/markdown/commit/35db54372bc59ab0ac080731cc738c39eab2f96f))
* adding a handful of unofficial http status codes ([#522](https://github.com/moyarenko/markdown/issues/522)) ([6d94a79](https://github.com/moyarenko/markdown/commit/6d94a79039e5cbd5baaf7ab6422e0c1dee1d528f))
* adding a new `copyButtons` option for disabling code copy btns ([#59](https://github.com/moyarenko/markdown/issues/59)) ([e4c40fd](https://github.com/moyarenko/markdown/commit/e4c40fde5f0e6411e24b25ba44c8c424bf406913))
* adding support for a handful of language highlight aliases ([#643](https://github.com/moyarenko/markdown/issues/643)) ([7d52154](https://github.com/moyarenko/markdown/commit/7d5215441ef6559ecda58a5c09fcf56438ab190e))
* adding support for cookie auth ([#817](https://github.com/moyarenko/markdown/issues/817)) ([5a2ef14](https://github.com/moyarenko/markdown/commit/5a2ef14615fde6302d2ac062aa49e7c10ba59043))
* adding support for cookies to oas-to-har ([#794](https://github.com/moyarenko/markdown/issues/794)) ([37b020d](https://github.com/moyarenko/markdown/commit/37b020d5dc86f444807e8194a0fe2bdbfdf6548d))
* adding support for handling `default` responses ([#846](https://github.com/moyarenko/markdown/issues/846)) ([783fe1a](https://github.com/moyarenko/markdown/commit/783fe1a24c9cc2b3509366bb0e9b862ae71a7a99))
* adding support for highlighting diffs ([#835](https://github.com/moyarenko/markdown/issues/835)) ([eb04c38](https://github.com/moyarenko/markdown/commit/eb04c38e0b944b26bc5e03cb63d8a2730586dc3d))
* adding support for highlighting OCaml and R languages ([#151](https://github.com/moyarenko/markdown/issues/151)) ([b901605](https://github.com/moyarenko/markdown/commit/b90160520a74f624faedf780d5bea6df583aa180))
* adding support for more string formats ([#381](https://github.com/moyarenko/markdown/issues/381)) ([da9c5a2](https://github.com/moyarenko/markdown/commit/da9c5a2d415842b65aa9da680fb1b61312a76536))
* Adding support for multiple media types ([#312](https://github.com/moyarenko/markdown/issues/312)) ([6ac7b67](https://github.com/moyarenko/markdown/commit/6ac7b67dd279c2c3e1652c24cff5b4a27dc2a5b7))
* addition of a new "node-simple" client language for our api sdk module ([#792](https://github.com/moyarenko/markdown/issues/792)) ([8f53c87](https://github.com/moyarenko/markdown/commit/8f53c871fe409a57ad14a4b7263855eeeb92846e))
* **markdown:** adjust lightbox img width ([#645](https://github.com/moyarenko/markdown/issues/645)) ([a016b88](https://github.com/moyarenko/markdown/commit/a016b88ee47a44e7f891efa7762dbaabcd7d76a0))
* adopt variable ([#200](https://github.com/moyarenko/markdown/issues/200)) ([947e31e](https://github.com/moyarenko/markdown/commit/947e31e08e02fe4d82c628ebd5bf3dd268ff3471))
* allow disabling tokenizers ([#119](https://github.com/moyarenko/markdown/issues/119)) ([0418a05](https://github.com/moyarenko/markdown/commit/0418a0543e0b15a00b51c0de38180c9de2f2b5fe))
* allow download attr in a-tags ([#39](https://github.com/moyarenko/markdown/issues/39)) ([87d8099](https://github.com/moyarenko/markdown/commit/87d8099e77095ce2aabe3a8c94c5da44d0b5a2a7))
* allow nesting callouts ([#601](https://github.com/moyarenko/markdown/issues/601)) ([e624b9a](https://github.com/moyarenko/markdown/commit/e624b9a18de59e570e15b5f899de71af06d77d4e))
* always use ATX format for headers ([#571](https://github.com/moyarenko/markdown/issues/571)) ([270e86f](https://github.com/moyarenko/markdown/commit/270e86f50e93746561f97e3702ec52de5d23bd4c))
* App selections should update current auth states ([#220](https://github.com/moyarenko/markdown/issues/220)) ([c97ff83](https://github.com/moyarenko/markdown/commit/c97ff8392c8a901b94766aef31382502804b7356))
* autoregister custom component tags and attrs ([#342](https://github.com/moyarenko/markdown/issues/342)) ([e58309a](https://github.com/moyarenko/markdown/commit/e58309aa27aebd6fccfc73a32e0f25daa7167aa9))
* compile custom magic blocks ([#399](https://github.com/moyarenko/markdown/issues/399)) ([d62229a](https://github.com/moyarenko/markdown/commit/d62229a6f12a6280ec4e313e22cdb1802b49796a))
* creating a new http-status-codes package ([#519](https://github.com/moyarenko/markdown/issues/519)) ([4f29c2b](https://github.com/moyarenko/markdown/commit/4f29c2bb65c5c9ae3a535d06d0fa6a1d9b705736))
* **glossary:** dark mode ([#599](https://github.com/moyarenko/markdown/issues/599)) ([6d9e7eb](https://github.com/moyarenko/markdown/commit/6d9e7eb92ee958bd9db1e88bfbb316adf6efd3bd))
* decoupling OAS code snippet generation into a standalone package ([#812](https://github.com/moyarenko/markdown/issues/812)) ([8fbe211](https://github.com/moyarenko/markdown/commit/8fbe21101dbde115e36d94506f810d91576ed33c))
* don't render style in safeMode ([#525](https://github.com/moyarenko/markdown/issues/525)) ([8a68880](https://github.com/moyarenko/markdown/commit/8a6888017fdbcfe125353718773b5449952796bd))
* ensure bordered images are rendered via a magic block ([#579](https://github.com/moyarenko/markdown/issues/579)) ([c3fb6f2](https://github.com/moyarenko/markdown/commit/c3fb6f299dde6619dea8e789042f746242d486af))
* error codes are now unique to the error message they're for ([#542](https://github.com/moyarenko/markdown/issues/542)) ([8e6d4c1](https://github.com/moyarenko/markdown/commit/8e6d4c11f74d7d101f902a24d8b517c266a6df20))
* export callout icons ([#219](https://github.com/moyarenko/markdown/issues/219)) ([7391b14](https://github.com/moyarenko/markdown/commit/7391b143d4ae889556e4be0d7c78650049c143ba))
* export components ([#218](https://github.com/moyarenko/markdown/issues/218)) ([4f888f6](https://github.com/moyarenko/markdown/commit/4f888f6a4e0db2429b30652b32efceb2a6139fae))
* expose the core setup method ([#51](https://github.com/moyarenko/markdown/issues/51)) ([3e85a53](https://github.com/moyarenko/markdown/commit/3e85a539d99eb86ff1dea3ea050eb2b5add9aa74))
* Extracting oas-to-har into @readme/oas-to-har ([#376](https://github.com/moyarenko/markdown/issues/376)) ([cd7dba3](https://github.com/moyarenko/markdown/commit/cd7dba3ad76e181b7df05932fdb917f7e4e24436))
* fix glossary term overflow in tables ([#108](https://github.com/moyarenko/markdown/issues/108)) ([52e8d9e](https://github.com/moyarenko/markdown/commit/52e8d9efddcfdd205c17be6fdbd62c70f6b31fe5))
* **rdmd/callout:** fix icon alignment ([#853](https://github.com/moyarenko/markdown/issues/853)) ([7ee7b5f](https://github.com/moyarenko/markdown/commit/7ee7b5f472c6b0248e4fb9745631b18e8e2cbb59))
* **rdmd:** fix link text-decoration ([#826](https://github.com/moyarenko/markdown/issues/826)) ([e080e92](https://github.com/moyarenko/markdown/commit/e080e9258ac59ac0c5c6632b232a2c9193aa7f40))
* fix plain string compiler ([#532](https://github.com/moyarenko/markdown/issues/532)) ([278d5ed](https://github.com/moyarenko/markdown/commit/278d5ed3e31b58799c46852d98c7d03e248df053))
* fixing some ssr issues with the markdown renderer  ([#705](https://github.com/moyarenko/markdown/issues/705)) ([52690a0](https://github.com/moyarenko/markdown/commit/52690a0dd7f174ef07cbfcf1c73edf768d9dea73))
* **tables:** hide empty table header rows ([#99](https://github.com/moyarenko/markdown/issues/99)) ([8b6d24b](https://github.com/moyarenko/markdown/commit/8b6d24bf3b1cebfce19b161bb669e504bddf083d))
* html block ([#609](https://github.com/moyarenko/markdown/issues/609)) ([6e9d8db](https://github.com/moyarenko/markdown/commit/6e9d8db0d901f131206f3ac23400bfd844e0836c))
* implement markdown/html in excerpt([#161](https://github.com/moyarenko/markdown/issues/161)) ([aee9d82](https://github.com/moyarenko/markdown/commit/aee9d82400db9a8f61110f44dffb3a1e501797af))
* implementing @readme/http-status-codes in the API Explorer ([#521](https://github.com/moyarenko/markdown/issues/521)) ([b04c980](https://github.com/moyarenko/markdown/commit/b04c980818f7844442ebe9d21ef3f3b2cd4eb01f))
* importing @readme/emojis in the markdown processor ([#473](https://github.com/moyarenko/markdown/issues/473)) ([ae1652e](https://github.com/moyarenko/markdown/commit/ae1652e4aa32b1c7d5c40ef8d598e2c3e341dd8a))
* improved har generation ([#689](https://github.com/moyarenko/markdown/issues/689)) ([2e6ac2e](https://github.com/moyarenko/markdown/commit/2e6ac2ec2dd29acd03cd9154c51f457218752d57))
* incrementing version ([7639794](https://github.com/moyarenko/markdown/commit/76397941cb4c454844961fd9fe0402e8067dbd75))
* initial implementation ([bbb5a12](https://github.com/moyarenko/markdown/commit/bbb5a12dc868f7dc3c8a889725e8139f90c6cf77))
* introducing enforcement on commit messages ([#703](https://github.com/moyarenko/markdown/issues/703)) ([7dba727](https://github.com/moyarenko/markdown/commit/7dba727bd2ea9b36af8d36e925ee9faf792d5d66))
* less lossy md() ([#377](https://github.com/moyarenko/markdown/issues/377)) ([4189554](https://github.com/moyarenko/markdown/commit/4189554e6f332ca396c6095ad3f028f567c7c2f3))
* **logs:** match null state to logged-out designs ([#833](https://github.com/moyarenko/markdown/issues/833)) ([9a6a8da](https://github.com/moyarenko/markdown/commit/9a6a8dafb3a2b767016cb15720d079c56b8ab4aa))
* **anchor:** menu item styling for doc links ([#589](https://github.com/moyarenko/markdown/issues/589)) ([31dbf68](https://github.com/moyarenko/markdown/commit/31dbf684832cf204eb952b50a2e59d60152975e5))
* more compiler updates ([#383](https://github.com/moyarenko/markdown/issues/383)) ([313e905](https://github.com/moyarenko/markdown/commit/313e9056e8eb114bc556bc50c163ebafaa6f1bcc))
* nested ast processing ([#679](https://github.com/moyarenko/markdown/issues/679)) ([67066b8](https://github.com/moyarenko/markdown/commit/67066b8fed325d47d29bcd68636df2152023ff83))
* new markdown engine ([#458](https://github.com/moyarenko/markdown/issues/458)) ([864b64b](https://github.com/moyarenko/markdown/commit/864b64b646ae505c8e527ddf42518a589d28dd87)), closes [#306](https://github.com/moyarenko/markdown/issues/306) [#398](https://github.com/moyarenko/markdown/issues/398) [#435](https://github.com/moyarenko/markdown/issues/435) [#404](https://github.com/moyarenko/markdown/issues/404) [#405](https://github.com/moyarenko/markdown/issues/405) [#406](https://github.com/moyarenko/markdown/issues/406) [#407](https://github.com/moyarenko/markdown/issues/407) [#413](https://github.com/moyarenko/markdown/issues/413) [#416](https://github.com/moyarenko/markdown/issues/416) [#410](https://github.com/moyarenko/markdown/issues/410) [#415](https://github.com/moyarenko/markdown/issues/415) [#408](https://github.com/moyarenko/markdown/issues/408) [#409](https://github.com/moyarenko/markdown/issues/409) [#417](https://github.com/moyarenko/markdown/issues/417) [#411](https://github.com/moyarenko/markdown/issues/411) [#412](https://github.com/moyarenko/markdown/issues/412) [#414](https://github.com/moyarenko/markdown/issues/414) [#424](https://github.com/moyarenko/markdown/issues/424) [#428](https://github.com/moyarenko/markdown/issues/428) [#425](https://github.com/moyarenko/markdown/issues/425) [#418](https://github.com/moyarenko/markdown/issues/418) [#419](https://github.com/moyarenko/markdown/issues/419) [#421](https://github.com/moyarenko/markdown/issues/421) [#422](https://github.com/moyarenko/markdown/issues/422) [#423](https://github.com/moyarenko/markdown/issues/423) [#426](https://github.com/moyarenko/markdown/issues/426) [#427](https://github.com/moyarenko/markdown/issues/427) [#429](https://github.com/moyarenko/markdown/issues/429) [#430](https://github.com/moyarenko/markdown/issues/430) [#432](https://github.com/moyarenko/markdown/issues/432) [#431](https://github.com/moyarenko/markdown/issues/431) [#434](https://github.com/moyarenko/markdown/issues/434) [/github.com/facebook/jest/issues/9396#issuecomment-573328488](https://github.com/moyarenko//github.com/facebook/jest/issues/9396/issues/issuecomment-573328488) [#508](https://github.com/moyarenko/markdown/issues/508) [#515](https://github.com/moyarenko/markdown/issues/515) [#516](https://github.com/moyarenko/markdown/issues/516)
* **demo:** polish sticky scrolling ([#523](https://github.com/moyarenko/markdown/issues/523)) ([3c6c2e6](https://github.com/moyarenko/markdown/commit/3c6c2e623e993ba7d8a2ff950ed12435040d0f6d))
* promote the markdown engine into a dedicated repo ([#12](https://github.com/moyarenko/markdown/issues/12)) ([6093851](https://github.com/moyarenko/markdown/commit/6093851f26007da7a5775e381027773e948db644))
* prompt to log into docs for hubs with logs ([#683](https://github.com/moyarenko/markdown/issues/683)) ([84027ec](https://github.com/moyarenko/markdown/commit/84027ecaba55ff8e372c5a4a34b49e23eb3d5271)), closes [/github.com/readmeio/api-explorer/pull/683#discussion_r421133565](https://github.com/moyarenko//github.com/readmeio/api-explorer/pull/683/issues/discussion_r421133565)
* **markdown:** pull CSS from readme ([#650](https://github.com/moyarenko/markdown/issues/650)) ([bd3d0d3](https://github.com/moyarenko/markdown/commit/bd3d0d39ddb4688bfd4ac59bbf7134bd72bbbf4f)), closes [#647](https://github.com/moyarenko/markdown/issues/647)
* refer to new pointers for log ([#407](https://github.com/moyarenko/markdown/issues/407)) ([193b38b](https://github.com/moyarenko/markdown/commit/193b38b17687f99a9df5f104638cdb7ed2dea36c))
* removing an eslint disable in the http-status-codes pkg ([3e35c56](https://github.com/moyarenko/markdown/commit/3e35c56c0822241ede00d5d452ebea88911a811b))
* save newlines with spaces ([#471](https://github.com/moyarenko/markdown/issues/471)) ([63649e7](https://github.com/moyarenko/markdown/commit/63649e73656f1e41c3c5ef7284ddad22d4831193))
* **markdown:** server-side rdmd bundle ([#767](https://github.com/moyarenko/markdown/issues/767)) ([4422341](https://github.com/moyarenko/markdown/commit/44223414eb14f4cfa46a10482c7207c2f801efed))
* setting a custom header for all "Try It" requests ([#471](https://github.com/moyarenko/markdown/issues/471)) ([663d82f](https://github.com/moyarenko/markdown/commit/663d82f09092b9fb35f6f43b464b171590a599f9))
* specify component-to-custom magic block mappings ([#60](https://github.com/moyarenko/markdown/issues/60)) ([460270b](https://github.com/moyarenko/markdown/commit/460270be16a2ca4709d57089b70a179d622daabf))
* splitting out our current markdown engine to a new package ([#514](https://github.com/moyarenko/markdown/issues/514)) ([087374d](https://github.com/moyarenko/markdown/commit/087374d2af9e2f1b0f1322507324979f7d9494b7))
* support for allOf and a host of small improvements and bug fixes ([#436](https://github.com/moyarenko/markdown/issues/436)) ([f1381d1](https://github.com/moyarenko/markdown/commit/f1381d16e06df1b49c25e7d6d66f2fdd436d9357)), closes [#517](https://github.com/moyarenko/markdown/issues/517)
* support multiple response types ([#208](https://github.com/moyarenko/markdown/issues/208)) ([d87cc3d](https://github.com/moyarenko/markdown/commit/d87cc3dc7be82a2d4e13b892f5318fd160728ca6))
* table of contents generator ([#43](https://github.com/moyarenko/markdown/issues/43)) ([056bea6](https://github.com/moyarenko/markdown/commit/056bea6d43ee3868f703fe76c3b74d521b2564da))
* throw when parsing invalid magic block json ([#563](https://github.com/moyarenko/markdown/issues/563)) ([72a59dc](https://github.com/moyarenko/markdown/commit/72a59dcc2790fb2721504e7ddee69042e03163c3))
* treat react and react-dom as external deps ([#90](https://github.com/moyarenko/markdown/issues/90)) ([7be16d7](https://github.com/moyarenko/markdown/commit/7be16d7a4de3ede54a3c46ef7cc5797a1a47888e))
* **release:** trigger build ([00b91cc](https://github.com/moyarenko/markdown/commit/00b91ccfac60004ab7d8d78515c67a1ffe8d1797))
* **release:** trigger build ([ff9e757](https://github.com/moyarenko/markdown/commit/ff9e757a8db1e2ad5ea4e3d095ecb09d06fb0f10))
* trigger release ([9549095](https://github.com/moyarenko/markdown/commit/9549095fc9c4587812bd482bf2d1f52b295e53ff))
* try using purecomponent for html ([#562](https://github.com/moyarenko/markdown/issues/562)) ([6f44d4b](https://github.com/moyarenko/markdown/commit/6f44d4b1cfe2ae2724ab425f08056a78c27138f4))
* Update Schema Form UI ([#228](https://github.com/moyarenko/markdown/issues/228)) ([162086c](https://github.com/moyarenko/markdown/commit/162086c04a7e0989ef2631f69e901a4581663618))
* updating dependabot to follow our commit standards ([a06d86d](https://github.com/moyarenko/markdown/commit/a06d86dd7193c79c4f7cf496e3fe9b9ddcef5ad7))
* updating our callout emoji regex to use `emoji-regex` ([#536](https://github.com/moyarenko/markdown/issues/536)) ([87fdde2](https://github.com/moyarenko/markdown/commit/87fdde2fe48d958694308e0b7facec18a7e6219e))
* Upgrade to Webpack 4 ([#270](https://github.com/moyarenko/markdown/issues/270)) ([27efa37](https://github.com/moyarenko/markdown/commit/27efa379b4963af2648cba0ba9df7786735c2035))
* upgrading @readme/react-jsonschema-form to v1.2.0 ([#852](https://github.com/moyarenko/markdown/issues/852)) ([4e37271](https://github.com/moyarenko/markdown/commit/4e3727163371753c69088181c3702f01da3518b3))
* upgrading out of date deps ([#542](https://github.com/moyarenko/markdown/issues/542)) ([f8aae4f](https://github.com/moyarenko/markdown/commit/f8aae4f9a387974079e8d958917e936755b45820))
* upgrading prettier to 2.0 ([#546](https://github.com/moyarenko/markdown/issues/546)) ([e3582ec](https://github.com/moyarenko/markdown/commit/e3582ec0d742f6152a03ea730ac12adcba1370e3))
* upgrading syntax-highlighter to support Lua and Solidity ([#391](https://github.com/moyarenko/markdown/issues/391)) ([3466ece](https://github.com/moyarenko/markdown/commit/3466ecefc97405a3e2ebe953a1d754f4eb8be6b2))
* **glossary-item:** use react-tippy to control tooltips ([#553](https://github.com/moyarenko/markdown/issues/553)) ([0302473](https://github.com/moyarenko/markdown/commit/03024739dd439ebac3ffc45b35c073d80eb576c4))
* validate oas on preview ([#721](https://github.com/moyarenko/markdown/issues/721)) ([4e6df88](https://github.com/moyarenko/markdown/commit/4e6df886285b6dd30903c5a43c6e68e50d89f912))
* visual regression testing and dev server app ([#94](https://github.com/moyarenko/markdown/issues/94)) ([0774166](https://github.com/moyarenko/markdown/commit/07741663d0a603c7f178b63ebed6a81695e36ec2))

### 🛠 Fixes & Updates

* _actually_ publish releases to npm ([c6a8883](https://github.com/moyarenko/markdown/commit/c6a88835ebf4fd7a7ba7537ac932eaa03468404a))
* **deps:** [Security] Bump acorn from 6.4.0 to 6.4.1 ([#580](https://github.com/moyarenko/markdown/issues/580)) ([11a145b](https://github.com/moyarenko/markdown/commit/11a145b25734f826ad5a76cb7daea0e3368c93a5))
* **deps:** [Security] Bump handlebars from 4.1.2 to 4.5.3 ([#418](https://github.com/moyarenko/markdown/issues/418)) ([f06bfb2](https://github.com/moyarenko/markdown/commit/f06bfb25081ae368480428af5b5270f348289f5b))
* <a href="javascript:alert('eek')">oops?</a> ([f3b7bc7](https://github.com/moyarenko/markdown/commit/f3b7bc7d986e0fbf82a4b6d68707250434161d9a))
* 🐛 create normalize as an option ([#559](https://github.com/moyarenko/markdown/issues/559)) ([af577ba](https://github.com/moyarenko/markdown/commit/af577ba458a4517d17faf5cea4e63dbcdd0dd77a))
* **recipes:** add 'slug' to whitelist ([#118](https://github.com/moyarenko/markdown/issues/118)) ([03d966a](https://github.com/moyarenko/markdown/commit/03d966a86b0a271525ee52f6ab28cd288796997d))
* add alt text option for images ([#535](https://github.com/moyarenko/markdown/issues/535)) ([4d7876b](https://github.com/moyarenko/markdown/commit/4d7876b3bac9013626feef69bad4c879ad73565d))
* **heading:** add aria-label to anchors ([#230](https://github.com/moyarenko/markdown/issues/230)) ([1df0220](https://github.com/moyarenko/markdown/commit/1df0220e4995ecd64c93d2a0fe155d6ec9f956e2))
* add back padding to lists in callouts ([#126](https://github.com/moyarenko/markdown/issues/126)) ([184c238](https://github.com/moyarenko/markdown/commit/184c2389acd48ef19eceee1d2e23402fddbfe235))
* add back support for certain ranges of emoji ([#279](https://github.com/moyarenko/markdown/issues/279)) ([163863f](https://github.com/moyarenko/markdown/commit/163863f9d6d99009f1c6f1f1d08ef6f81bda3ab2))
* add codemirror as exp dep ([#82](https://github.com/moyarenko/markdown/issues/82)) ([5a3aa52](https://github.com/moyarenko/markdown/commit/5a3aa520627dc7aa4c0413ce25be24849897e86b))
* **gemoji:** add compiler for font-awesome emojis ([#461](https://github.com/moyarenko/markdown/issues/461)) ([36f0b9d](https://github.com/moyarenko/markdown/commit/36f0b9d38a3e32cd8a77e0f7dd33e113de54f2a7))
* **SEO:** add href to TOC ([#447](https://github.com/moyarenko/markdown/issues/447)) ([06a463e](https://github.com/moyarenko/markdown/commit/06a463e540c94b4a250be9238ea0ee2de245e74a))
* **seo:** add href to TOC ([#455](https://github.com/moyarenko/markdown/issues/455)) ([a99f57f](https://github.com/moyarenko/markdown/commit/a99f57f926fdcdfc9791a6904794939d18194344))
* **markdown:** add missing compilers ([#808](https://github.com/moyarenko/markdown/issues/808)) ([3a6e720](https://github.com/moyarenko/markdown/commit/3a6e720a77d7cbba6dcf9a98c439953875041aa2)), closes [#772](https://github.com/moyarenko/markdown/issues/772)
* **code:** add test for indented code blocks ([#79](https://github.com/moyarenko/markdown/issues/79)) ([bd3e8e5](https://github.com/moyarenko/markdown/commit/bd3e8e53ae74799c1e1fe603b30f80adc196cde3)), closes [#70](https://github.com/moyarenko/markdown/issues/70)
* add variables and glossary items to TOC ([#115](https://github.com/moyarenko/markdown/issues/115)) ([94e505d](https://github.com/moyarenko/markdown/commit/94e505d7399523e9083d47d9ef4ed2750df954aa))
* adding __tests__ and coverage/ into the ignore for markdown-magic ([72ad2a6](https://github.com/moyarenko/markdown/commit/72ad2a6c7a76396974c528f0727c861f6f46d8ec))
* adding .jsinspectrc to the http-status-codes npmignore file ([9d3f91e](https://github.com/moyarenko/markdown/commit/9d3f91ee2d9f376ce96e6453913fde5df4ab99c3))
* Adding a `format: password` string example to our types def ([8c592d7](https://github.com/moyarenko/markdown/commit/8c592d70fe060abab5974c7bffc478c930f3f44c))
* adding an object in query param example ([8059798](https://github.com/moyarenko/markdown/commit/80597988388592b0a9e386f095eeb60ee4765a96))
* adding in support for handling legacy manual api multi-examples ([#479](https://github.com/moyarenko/markdown/issues/479)) ([3701f6c](https://github.com/moyarenko/markdown/commit/3701f6ccbf9d1e1f5475bb41fa0204a893d31338))
* adding support for handling requestBody if its in a $ref ([#847](https://github.com/moyarenko/markdown/issues/847)) ([7f80255](https://github.com/moyarenko/markdown/commit/7f802556d67abc37dfd638b967603308769f6d80))
* adding the coverage/ directory into npmignore ([693ce1b](https://github.com/moyarenko/markdown/commit/693ce1bf9d5f164241cc9fed54ad1e6cd75a202a))
* Adopting @readme/eslint-config across every package ([#379](https://github.com/moyarenko/markdown/issues/379)) ([f2d9027](https://github.com/moyarenko/markdown/commit/f2d9027a056d7fce8aa05e1497a9c6df308724d9))
* align params to top ([#431](https://github.com/moyarenko/markdown/issues/431)) ([8bcd03c](https://github.com/moyarenko/markdown/commit/8bcd03c8b67750365e4a558ed6eb470060836497))
* allow "compact" callouts ([#611](https://github.com/moyarenko/markdown/issues/611)) ([b56d2fc](https://github.com/moyarenko/markdown/commit/b56d2fcf854de69713897e9791fccedf2b287b52))
* allow disabling per tokenizer ([#136](https://github.com/moyarenko/markdown/issues/136)) ([9bdd6e7](https://github.com/moyarenko/markdown/commit/9bdd6e7b035ec56a96014f6163ff843734fc66d8))
* allow indented code on first line ([#362](https://github.com/moyarenko/markdown/issues/362)) ([2b55c09](https://github.com/moyarenko/markdown/commit/2b55c092e669ddf1488c792748f9c9775742e97d))
* allow to pass non-undefined values([#149](https://github.com/moyarenko/markdown/issues/149)) ([b70fb90](https://github.com/moyarenko/markdown/commit/b70fb90e1e59a3a31c86f5f9f8af67ad18dd3637))
* allow undefined code children ([#390](https://github.com/moyarenko/markdown/issues/390)) ([27c30f6](https://github.com/moyarenko/markdown/commit/27c30f6ac03830d9b500bbfc0690963749261c5e))
* always build for production ([b15724d](https://github.com/moyarenko/markdown/commit/b15724df16e6bc2548e79f377f30365086b244e0))
* anchor processing ([#605](https://github.com/moyarenko/markdown/issues/605)) ([98b482e](https://github.com/moyarenko/markdown/commit/98b482e85aaf922daaf40ecc394b27dba8c3e316))
* API righthand sidebar styling (again) ([#591](https://github.com/moyarenko/markdown/issues/591)) ([f870549](https://github.com/moyarenko/markdown/commit/f8705494df1c7e56914758db4bafcfe625189911))
* astToPlainText with lone image ([#561](https://github.com/moyarenko/markdown/issues/561)) ([477322a](https://github.com/moyarenko/markdown/commit/477322acfd54a03ad785edb6dcf01577d8665fa9))
* attaching my name to workflow dep updates ([193755f](https://github.com/moyarenko/markdown/commit/193755fcd9d231984bc2afa6f2eca12ce52f940d))
* auto-deploy changes to Heroku (markdown-demo) ([#484](https://github.com/moyarenko/markdown/issues/484)) ([e425040](https://github.com/moyarenko/markdown/commit/e4250404960f2e5b381c0aa57d3dc5ced52b652a))
* auto-open review apps on Heroku ([#494](https://github.com/moyarenko/markdown/issues/494)) ([427c917](https://github.com/moyarenko/markdown/commit/427c917ec714409259aa94e9899e0437546efa02))
* avoid nesting button in code block ([#587](https://github.com/moyarenko/markdown/issues/587)) ([a9a5d5d](https://github.com/moyarenko/markdown/commit/a9a5d5ded76bcc3ceb23147747342462bad19630))
* Backport support for multi media types to legacy Manual APIs ([#346](https://github.com/moyarenko/markdown/issues/346)) ([45f728e](https://github.com/moyarenko/markdown/commit/45f728eea4120e52eae0f7a06859ce801a1784e9))
* broken api log url ([#460](https://github.com/moyarenko/markdown/issues/460)) ([503154d](https://github.com/moyarenko/markdown/commit/503154dc9cfc6665a1aae6564c8d67f36bf1c69b))
* bug where responses with multiple examples weren't rendered properly ([#599](https://github.com/moyarenko/markdown/issues/599)) ([ef18f54](https://github.com/moyarenko/markdown/commit/ef18f54ae69b2f4d5fc2e06a7175e57b298bce69))
* **deps:** bump [@readme](https://github.com/readme) packages ([#98](https://github.com/moyarenko/markdown/issues/98)) ([8f54042](https://github.com/moyarenko/markdown/commit/8f5404280f628a934c5397bfbf0420861133be54))
* **deps-dev:** bump @babel/core from 7.11.0 to 7.12.9 ([2234951](https://github.com/moyarenko/markdown/commit/2234951bf5c4fdaf94ea14b798f5f80b19d8c736))
* **deps-dev:** bump @babel/core from 7.12.13 to 7.14.6 ([#169](https://github.com/moyarenko/markdown/issues/169)) ([8666a71](https://github.com/moyarenko/markdown/commit/8666a7150fb937d3fb4c2146543cb63649b369e8))
* **deps-dev:** bump @babel/core from 7.6.4 to 7.7.2 ([#373](https://github.com/moyarenko/markdown/issues/373)) ([fa528cb](https://github.com/moyarenko/markdown/commit/fa528cbb50068390800a33a59d072ca91d54a4dc))
* Bump @babel/core from 7.7.2 to 7.7.4 ([#384](https://github.com/moyarenko/markdown/issues/384)) ([580f77e](https://github.com/moyarenko/markdown/commit/580f77eaf578038ff97e9a9f79ae1c43cadd3ac5))
* Bump @babel/core from 7.7.4 to 7.7.5 ([#399](https://github.com/moyarenko/markdown/issues/399)) ([a460110](https://github.com/moyarenko/markdown/commit/a460110cab1b7287d794af4745394513556b26fa))
* **deps-dev:** Bump @babel/core from 7.7.5 to 7.7.7 ([#422](https://github.com/moyarenko/markdown/issues/422)) ([2cbe0ab](https://github.com/moyarenko/markdown/commit/2cbe0ab993c2d2ed574330d7ddef6f1595b7dc14))
* **deps-dev:** Bump @babel/core from 7.7.7 to 7.8.0 ([#437](https://github.com/moyarenko/markdown/issues/437)) ([986189d](https://github.com/moyarenko/markdown/commit/986189d4e77dfd547cb627e8a024b620e06ed6ec))
* **deps-dev:** Bump @babel/core from 7.8.0 to 7.8.3 ([#454](https://github.com/moyarenko/markdown/issues/454)) ([0cd1d23](https://github.com/moyarenko/markdown/commit/0cd1d230b623d5ff300d4cb9c18e57ed8b514a82))
* **deps-dev:** Bump @babel/core from 7.8.3 to 7.8.4 ([#467](https://github.com/moyarenko/markdown/issues/467)) ([00e49d0](https://github.com/moyarenko/markdown/commit/00e49d0027707496543c4e783621287c421bb553))
* **deps-dev:** Bump @babel/core from 7.8.4 to 7.8.6 ([#501](https://github.com/moyarenko/markdown/issues/501)) ([e7aa3f3](https://github.com/moyarenko/markdown/commit/e7aa3f3cc5c63258ba1209e639558ee19f15d975))
* **deps-dev:** Bump @babel/core from 7.8.6 to 7.8.7 ([#509](https://github.com/moyarenko/markdown/issues/509)) ([86192fd](https://github.com/moyarenko/markdown/commit/86192fd2bc8c9fa9f1bee290879e4fa88ab92df4))
* **deps-dev:** Bump @babel/core from 7.8.7 to 7.9.0 ([#556](https://github.com/moyarenko/markdown/issues/556)) ([a4d6f8c](https://github.com/moyarenko/markdown/commit/a4d6f8c2b34b510b28e0817d73fb26ef4d569797))
* **deps-dev:** Bump @babel/core from 7.9.0 to 7.9.6 ([#677](https://github.com/moyarenko/markdown/issues/677)) ([8d277ac](https://github.com/moyarenko/markdown/commit/8d277acc4f326a1ba468f1811ef8e26db51b743d))
* **deps-dev:** bump @babel/plugin-proposal-class-properties ([#811](https://github.com/moyarenko/markdown/issues/811)) ([a791fd5](https://github.com/moyarenko/markdown/commit/a791fd5891c592990de2d286ca8b9951e2c0ed38))
* **deps-dev:** bump @babel/plugin-proposal-object-rest-spread ([#190](https://github.com/moyarenko/markdown/issues/190)) ([0599876](https://github.com/moyarenko/markdown/commit/0599876805f645bf9cc129c1eed28db27915328f))
* **deps-dev:** Bump @babel/plugin-proposal-object-rest-spread ([#553](https://github.com/moyarenko/markdown/issues/553)) ([eb21c31](https://github.com/moyarenko/markdown/commit/eb21c317636a6622aabb6a25f1e9d98ad9b7606e))
* **deps-dev:** Bump @babel/plugin-proposal-object-rest-spread ([#609](https://github.com/moyarenko/markdown/issues/609)) ([6f98e42](https://github.com/moyarenko/markdown/commit/6f98e42d5fe3eb1da2aefc03346f283a582ac6f7))
* **deps-dev:** Bump @babel/plugin-proposal-object-rest-spread ([#707](https://github.com/moyarenko/markdown/issues/707)) ([728689f](https://github.com/moyarenko/markdown/commit/728689fa039cfbbdeb9faae9833f2f79d8bd9002))
* **deps-dev:** bump @babel/preset-env from 7.12.13 to 7.14.7 ([#197](https://github.com/moyarenko/markdown/issues/197)) ([0eb0e19](https://github.com/moyarenko/markdown/commit/0eb0e19b1761fd225d28e6f4ca62ab72b647b4e0))
* **deps-dev:** bump @babel/preset-env from 7.6.3 to 7.7.1 ([#369](https://github.com/moyarenko/markdown/issues/369)) ([f04a680](https://github.com/moyarenko/markdown/commit/f04a68069cda6b14069b6065df6c5ff1d4c531c9))
* Bump @babel/preset-env from 7.7.1 to 7.7.4 ([#383](https://github.com/moyarenko/markdown/issues/383)) ([400a917](https://github.com/moyarenko/markdown/commit/400a917ef0b7765d5964cbd0abc7d8afa92ea754))
* Bump @babel/preset-env from 7.7.4 to 7.7.6 ([#400](https://github.com/moyarenko/markdown/issues/400)) ([3261792](https://github.com/moyarenko/markdown/commit/32617922b0495eeee93fad7738fd62fe779a5b6d))
* Bump @babel/preset-env from 7.7.6 to 7.7.7 ([#413](https://github.com/moyarenko/markdown/issues/413)) ([82ca75c](https://github.com/moyarenko/markdown/commit/82ca75c626dd7454d17d7509187436ee59abffbd))
* **deps-dev:** Bump @babel/preset-env from 7.7.7 to 7.8.3 ([#449](https://github.com/moyarenko/markdown/issues/449)) ([c105f56](https://github.com/moyarenko/markdown/commit/c105f569db1930c446a8de526986748b877bc366))
* **deps-dev:** Bump @babel/preset-env from 7.8.3 to 7.8.4 ([#465](https://github.com/moyarenko/markdown/issues/465)) ([b29a26d](https://github.com/moyarenko/markdown/commit/b29a26d9d66ca70c1b4d69ad583a4872ee4af265))
* **deps-dev:** Bump @babel/preset-env from 7.8.4 to 7.8.6 ([#504](https://github.com/moyarenko/markdown/issues/504)) ([54f23d2](https://github.com/moyarenko/markdown/commit/54f23d2b5a563b89ba99f1295e5a64ad29f4ff1b))
* **deps-dev:** Bump @babel/preset-env from 7.8.6 to 7.8.7 ([#511](https://github.com/moyarenko/markdown/issues/511)) ([d2c4a8e](https://github.com/moyarenko/markdown/commit/d2c4a8e948e8894120f3c5513c2c1a3363f425f9))
* **deps-dev:** Bump @babel/preset-env from 7.8.7 to 7.9.0 ([#555](https://github.com/moyarenko/markdown/issues/555)) ([4a742ad](https://github.com/moyarenko/markdown/commit/4a742adcbb3027ef079fce569b75003651e303be))
* **deps-dev:** Bump @babel/preset-env from 7.9.0 to 7.9.5 ([#593](https://github.com/moyarenko/markdown/issues/593)) ([c40a910](https://github.com/moyarenko/markdown/commit/c40a910cd25edc192c972ce8b020600a467f701e))
* **deps-dev:** Bump @babel/preset-env from 7.9.5 to 7.9.6 ([#676](https://github.com/moyarenko/markdown/issues/676)) ([8e507de](https://github.com/moyarenko/markdown/commit/8e507de24980882e3a0db54d1c164c4f4d62edd2))
* **deps-dev:** bump @babel/preset-react from 7.6.3 to 7.7.0 ([#370](https://github.com/moyarenko/markdown/issues/370)) ([fc7fff7](https://github.com/moyarenko/markdown/commit/fc7fff7c51bc7f5afce66801aa3a523afe236809))
* Bump @babel/preset-react from 7.7.0 to 7.7.4 ([#389](https://github.com/moyarenko/markdown/issues/389)) ([c0c4988](https://github.com/moyarenko/markdown/commit/c0c49883d482e2cd2c93723e49a2202156c67eb7))
* **deps-dev:** Bump @babel/preset-react from 7.7.4 to 7.8.0 ([#443](https://github.com/moyarenko/markdown/issues/443)) ([f288246](https://github.com/moyarenko/markdown/commit/f28824672ee498fbcfa63f8ed322122ee287fdd3))
* **deps-dev:** Bump @babel/preset-react from 7.8.0 to 7.8.3 ([#450](https://github.com/moyarenko/markdown/issues/450)) ([dc9cb32](https://github.com/moyarenko/markdown/commit/dc9cb32eeb91ca000066077043c6841b7e44deaa))
* **deps-dev:** Bump @babel/preset-react from 7.8.3 to 7.9.1 ([#552](https://github.com/moyarenko/markdown/issues/552)) ([80b44dc](https://github.com/moyarenko/markdown/commit/80b44dcca6b6bdc05be47b05a0175f3c8c9ba387))
* **deps-dev:** Bump @babel/preset-react from 7.9.1 to 7.9.4 ([#576](https://github.com/moyarenko/markdown/issues/576)) ([1f7f16f](https://github.com/moyarenko/markdown/commit/1f7f16f0fdfbf1f9ea90e46784ef61d86dc5138d))
* **deps-dev:** bump @commitlint/cli from 11.0.0 to 12.1.4 ([#182](https://github.com/moyarenko/markdown/issues/182)) ([50325ed](https://github.com/moyarenko/markdown/commit/50325edf4388832a9a55d57974b2dc6782c65761))
* **deps-dev:** bump @commitlint/config-angular from 11.0.0 to 12.1.4 ([#162](https://github.com/moyarenko/markdown/issues/162)) ([227c5ed](https://github.com/moyarenko/markdown/commit/227c5edbed986810953c8e19ec345c651f696ee9))
* **deps-dev:** bump @commitlint/config-conventional ([#195](https://github.com/moyarenko/markdown/issues/195)) ([43bc4b4](https://github.com/moyarenko/markdown/commit/43bc4b47db7e7b82d8c162e42011c23960b99078))
* **deps:** bump @readme/emojis from 4.0.0 to 4.0.1 ([#384](https://github.com/moyarenko/markdown/issues/384)) ([048ee9f](https://github.com/moyarenko/markdown/commit/048ee9f913f4dad7422fd3bb979b30d3b0b52aea))
* **deps-dev:** Bump @readme/eslint-config from 1.10.0 to 1.12.0 ([#478](https://github.com/moyarenko/markdown/issues/478)) ([f5a0244](https://github.com/moyarenko/markdown/commit/f5a0244fca612768627c12738693ae1e7d76b538))
* **deps-dev:** Bump @readme/eslint-config from 1.12.0 to 1.13.0 ([#489](https://github.com/moyarenko/markdown/issues/489)) ([85be6bd](https://github.com/moyarenko/markdown/commit/85be6bdf1dcb9b6acf8f750d4a1dfb99706311ae))
* **deps-dev:** Bump @readme/eslint-config from 1.13.0 to 1.14.0 ([#505](https://github.com/moyarenko/markdown/issues/505)) ([3060973](https://github.com/moyarenko/markdown/commit/3060973d5db3ce42875ce2ce427a9be3e826979d))
* **deps-dev:** Bump @readme/eslint-config from 1.14.0 to 1.16.0 ([#535](https://github.com/moyarenko/markdown/issues/535)) ([1abc64c](https://github.com/moyarenko/markdown/commit/1abc64c2f6199915024f25bdc38fa4e33bef03b5))
* Bump @readme/eslint-config from 1.4.2 to 1.5.0 ([#385](https://github.com/moyarenko/markdown/issues/385)) ([deae3ad](https://github.com/moyarenko/markdown/commit/deae3adc33a4328d6de9a7b509b2a06413eb76f2))
* Bump @readme/eslint-config from 1.7.0 to 1.8.0 ([#406](https://github.com/moyarenko/markdown/issues/406)) ([dd34213](https://github.com/moyarenko/markdown/commit/dd3421349f750ec6aff3a3d4ef726ade6e427bc9))
* **deps-dev:** Bump @readme/eslint-config from 1.8.0 to 1.8.1 ([#416](https://github.com/moyarenko/markdown/issues/416)) ([2564103](https://github.com/moyarenko/markdown/commit/2564103f921f17a3ea5d9c0f63efef814994035b))
* **deps-dev:** Bump @readme/eslint-config from 1.8.1 to 1.9.0 ([#424](https://github.com/moyarenko/markdown/issues/424)) ([ef98735](https://github.com/moyarenko/markdown/commit/ef98735e11a4d050f3a9b9700c580d5fe841f4c2))
* **deps-dev:** Bump @readme/eslint-config from 1.9.0 to 1.9.1 ([#445](https://github.com/moyarenko/markdown/issues/445)) ([906ff84](https://github.com/moyarenko/markdown/commit/906ff842061326a980e017b1e4ee2acffe3d7673))
* **deps-dev:** Bump @readme/eslint-config from 1.9.1 to 1.10.0 ([#448](https://github.com/moyarenko/markdown/issues/448)) ([2f1781b](https://github.com/moyarenko/markdown/commit/2f1781b419a761f07d2724aa64a8d5111e146d6e))
* **deps-dev:** Bump @readme/eslint-config from 2.0.0 to 2.0.4 ([#610](https://github.com/moyarenko/markdown/issues/610)) ([abe119a](https://github.com/moyarenko/markdown/commit/abe119ab4e9cb9086ec1f6edff3c3b537b2c7324))
* **deps-dev:** bump @readme/eslint-config from 3.4.0 to 3.6.2 ([#64](https://github.com/moyarenko/markdown/issues/64)) ([ab61909](https://github.com/moyarenko/markdown/commit/ab61909f99504adca19995e21965a0222a60c20a))
* **deps-dev:** Bump @readme/oas-examples from 2.1.1 to 3.0.0 ([#531](https://github.com/moyarenko/markdown/issues/531)) ([b3568a6](https://github.com/moyarenko/markdown/commit/b3568a69c048900515df026c86e7441c7faf9de0))
* **deps-dev:** bump @readme/oas-examples from 3.0.0 to 3.4.0 ([#774](https://github.com/moyarenko/markdown/issues/774)) ([7e4e12d](https://github.com/moyarenko/markdown/commit/7e4e12d09790199572dc4692a53aee8754dec9ce))
* **deps-dev:** bump @readme/variable from 11.0.0 to 13.4.12 ([#188](https://github.com/moyarenko/markdown/issues/188)) ([16724d8](https://github.com/moyarenko/markdown/commit/16724d84940b5211716264577a080a5d95d7dbbe))
* **deps-dev:** bump @readme/variable from 13.5.4 to 13.6.0 ([#307](https://github.com/moyarenko/markdown/issues/307)) ([51da52a](https://github.com/moyarenko/markdown/commit/51da52aa3a241c6f927cde5c60bcd0186a1da1ba))
* **deps-dev:** bump @readme/variable to v10.0.7 ([d6006d6](https://github.com/moyarenko/markdown/commit/d6006d6867ad941dcc3cebb109cf9784aa22be57))
* **deps-dev:** bump @testing-library/react from 12.1.2 to 12.1.5 ([#504](https://github.com/moyarenko/markdown/issues/504)) ([a9ffb70](https://github.com/moyarenko/markdown/commit/a9ffb708ee4429710443bc9cd84ce0bcf0dfa954))
* **deps:** bump `rehype` plugins in @readme/markdown ([#540](https://github.com/moyarenko/markdown/issues/540)) ([2f9b998](https://github.com/moyarenko/markdown/commit/2f9b9982c921a81307373cee38ef88f62345d382))
* **deps:** bump actions/checkout from 2.3.4 to 3 ([#442](https://github.com/moyarenko/markdown/issues/442)) ([dd78e22](https://github.com/moyarenko/markdown/commit/dd78e2289e141e8b116c3bcbc163eb2676cab0db))
* **deps:** bump actions/checkout from v1 to v2.2.0 ([#780](https://github.com/moyarenko/markdown/issues/780)) ([e87fa1a](https://github.com/moyarenko/markdown/commit/e87fa1a7d9496d6f892bcd76e020d9296c2368c5))
* **deps:** bump actions/checkout from v2.2.0 to v2.3.1 ([#800](https://github.com/moyarenko/markdown/issues/800)) ([211417c](https://github.com/moyarenko/markdown/commit/211417cda6e9ef0a2114a759a2f640b0c5f0131f))
* **deps:** bump actions/setup-node from 2.1.2 to 2.2.0 ([#205](https://github.com/moyarenko/markdown/issues/205)) ([decc3bd](https://github.com/moyarenko/markdown/commit/decc3bdb24fd904777e7a96296539ff06a835b2f))
* **deps:** bump actions/setup-node from 2.2.0 to 2.3.0 ([#235](https://github.com/moyarenko/markdown/issues/235)) ([95e3a2b](https://github.com/moyarenko/markdown/commit/95e3a2b6599b49993df3106cbd20efb46d18e873))
* **deps:** bump actions/setup-node from 2.3.0 to 2.4.0 ([#251](https://github.com/moyarenko/markdown/issues/251)) ([c013b36](https://github.com/moyarenko/markdown/commit/c013b360570875390f44cfde458ece7a6d565c1a))
* **deps:** bump actions/setup-node from 2.4.0 to 3 ([#440](https://github.com/moyarenko/markdown/issues/440)) ([d134aab](https://github.com/moyarenko/markdown/commit/d134aab5447f34cb695bb513f47e1b34f1164442))
* **deps:** bump actions/setup-node from v1 to v2.0.0 ([#781](https://github.com/moyarenko/markdown/issues/781)) ([6c1e9bd](https://github.com/moyarenko/markdown/commit/6c1e9bd482e9da292de629fe49423f302170c661))
* **deps:** bump actions/setup-node from v2.0.0 to v2.1.0 ([#810](https://github.com/moyarenko/markdown/issues/810)) ([31d5a07](https://github.com/moyarenko/markdown/commit/31d5a07460976497627567bcc61ad7ad53742911))
* **deps:** bump actions/setup-node from v2.1.0 to v2.1.1 ([044c98b](https://github.com/moyarenko/markdown/commit/044c98bf57c9676e179b02a73f9f15318fa0040c))
* **deps:** Bump async-retry from 1.2.3 to 1.3.1 ([#438](https://github.com/moyarenko/markdown/issues/438)) ([575117a](https://github.com/moyarenko/markdown/commit/575117a73c3882214c68bd002e23a76635d781bf))
* **deps-dev:** Bump auto-changelog from 1.16.2 to 1.16.3 ([#573](https://github.com/moyarenko/markdown/issues/573)) ([a1426f9](https://github.com/moyarenko/markdown/commit/a1426f9693a8e44b424702abf11d62d9fda435f9))
* **deps-dev:** Bump auto-changelog from 1.16.3 to 1.16.4 ([#581](https://github.com/moyarenko/markdown/issues/581)) ([464d75b](https://github.com/moyarenko/markdown/commit/464d75b113782a8a270fa5b67586ac1cdf3ea954))
* **deps-dev:** Bump auto-changelog from 1.16.4 to 2.0.0 ([#692](https://github.com/moyarenko/markdown/issues/692)) ([b8aefee](https://github.com/moyarenko/markdown/commit/b8aefeecfeb2ce78e8b1520482360a5ff9be720c))
* **deps-dev:** bump auto-changelog from 2.0.0 to 2.1.0 ([#801](https://github.com/moyarenko/markdown/issues/801)) ([928d8c0](https://github.com/moyarenko/markdown/commit/928d8c07a10b81348eeca3e7cfc6082083977a87))
* **deps-dev:** Bump babel-eslint from 10.0.3 to 10.1.0 ([#502](https://github.com/moyarenko/markdown/issues/502)) ([3292167](https://github.com/moyarenko/markdown/commit/3292167fc772e584ca0a61ed33eb7d303d7962f6))
* **deps-dev:** Bump babel-jest from 24.9.0 to 25.1.0 ([#455](https://github.com/moyarenko/markdown/issues/455)) ([083ca1c](https://github.com/moyarenko/markdown/commit/083ca1c17aa95a76a56f11e1c4094dc2dfd19eae))
* **deps-dev:** Bump babel-jest from 25.1.0 to 25.2.4 ([#570](https://github.com/moyarenko/markdown/issues/570)) ([3edda2d](https://github.com/moyarenko/markdown/commit/3edda2d13579cce6ea3bc5b20f78f1ae139f81a6))
* **deps-dev:** Bump babel-jest from 25.2.4 to 25.2.6 ([#582](https://github.com/moyarenko/markdown/issues/582)) ([5a4e354](https://github.com/moyarenko/markdown/commit/5a4e3540996bc462b15b2d8de89fe0af9c73ada6))
* **deps-dev:** Bump babel-jest from 25.2.6 to 25.4.0 ([#615](https://github.com/moyarenko/markdown/issues/615)) ([532f8ad](https://github.com/moyarenko/markdown/commit/532f8adc0c4c9e12c59d95638d2745d8946e5932))
* **deps-dev:** bump babel-jest from 26.0.1 to 26.1.0 ([#814](https://github.com/moyarenko/markdown/issues/814)) ([bf4d56b](https://github.com/moyarenko/markdown/commit/bf4d56b3a0cb17c8abc193ba16e871a4c1235071))
* **deps-dev:** bump babel-jest from 26.6.3 to 27.0.5 ([#187](https://github.com/moyarenko/markdown/issues/187)) ([dd26212](https://github.com/moyarenko/markdown/commit/dd262123e9dc6af8147c1250907014b2d92d8054))
* **deps-dev:** Bump babel-loader from 8.0.6 to 8.1.0 ([#569](https://github.com/moyarenko/markdown/issues/569)) ([e006edc](https://github.com/moyarenko/markdown/commit/e006edcf0d6a15081119347d9afc4595dcd915de))
* **deps:** Bump codemirror from 5.49.2 to 5.50.0 ([#412](https://github.com/moyarenko/markdown/issues/412)) ([d7b1d61](https://github.com/moyarenko/markdown/commit/d7b1d613d521e2a86420ae79a3e29a9212edf4fc))
* **deps:** Bump codemirror from 5.50.0 to 5.50.2 ([#427](https://github.com/moyarenko/markdown/issues/427)) ([1722353](https://github.com/moyarenko/markdown/commit/172235355c3c6bbaefa8d9092b13084009cd629b))
* **deps:** Bump codemirror from 5.50.2 to 5.51.0 ([#456](https://github.com/moyarenko/markdown/issues/456)) ([46d2719](https://github.com/moyarenko/markdown/commit/46d27197e46440d2f4b97788131a32af617c462d))
* **deps:** Bump codemirror from 5.51.0 to 5.52.0 ([#492](https://github.com/moyarenko/markdown/issues/492)) ([2459950](https://github.com/moyarenko/markdown/commit/2459950710201f2dbb47ed124f0cabc1ddf53531))
* **deps:** Bump codemirror from 5.52.0 to 5.52.2 ([#549](https://github.com/moyarenko/markdown/issues/549)) ([b9d6576](https://github.com/moyarenko/markdown/commit/b9d657617d431e7b7bda25381b46ebda679afcbf))
* **deps:** Bump codemirror from 5.52.2 to 5.53.2 ([#635](https://github.com/moyarenko/markdown/issues/635)) ([aae6ae2](https://github.com/moyarenko/markdown/commit/aae6ae275892714028c74dd784b47c75cc331c13))
* **deps:** bump codemirror from 5.53.2 to 5.54.0 ([#788](https://github.com/moyarenko/markdown/issues/788)) ([eb44fac](https://github.com/moyarenko/markdown/commit/eb44fac090f1eff89167469c6b863ee969524479))
* **deps-dev:** bump codemirror from 5.59.2 to 5.62.0 ([#177](https://github.com/moyarenko/markdown/issues/177)) ([35eb916](https://github.com/moyarenko/markdown/commit/35eb9165940c818aa848f37bc6a1dd317968fded))
* **deps-dev:** bump core-js from 3.8.3 to 3.15.2 ([#201](https://github.com/moyarenko/markdown/issues/201)) ([6f8c953](https://github.com/moyarenko/markdown/commit/6f8c9536488ea7b030cae18480fef775c6037110))
* Bump css-loader from 3.2.0 to 3.2.1 ([#401](https://github.com/moyarenko/markdown/issues/401)) ([4a135ed](https://github.com/moyarenko/markdown/commit/4a135edbadbecdea7a6ea65340114ee7618e5bcd))
* Bump css-loader from 3.2.1 to 3.3.2 ([#405](https://github.com/moyarenko/markdown/issues/405)) ([f772c49](https://github.com/moyarenko/markdown/commit/f772c49f0fb37b375bdfe7c072832d0f424050b7))
* **deps:** Bump css-loader from 3.3.2 to 3.4.0 ([#411](https://github.com/moyarenko/markdown/issues/411)) ([3502e5c](https://github.com/moyarenko/markdown/commit/3502e5c01c1f165419f3fd2d10dea617443de878))
* **deps-dev:** Bump css-loader from 3.4.0 to 3.4.1 ([#426](https://github.com/moyarenko/markdown/issues/426)) ([710dd4a](https://github.com/moyarenko/markdown/commit/710dd4a98ce26dbfa5ba7acd7d5d102e57a06ea2))
* **deps-dev:** Bump css-loader from 3.4.1 to 3.4.2 ([#440](https://github.com/moyarenko/markdown/issues/440)) ([fbfcf51](https://github.com/moyarenko/markdown/commit/fbfcf51b552c01f3f0421c263ce14636ccdc203d))
* **deps-dev:** bump css-loader from 3.6.0 to 5.0.1 ([2849a7d](https://github.com/moyarenko/markdown/commit/2849a7dfd58603d842933cdf3c5834b610774a47))
* **deps-dev:** bump css-loader from 5.0.2 to 6.2.0 ([#229](https://github.com/moyarenko/markdown/issues/229)) ([325396b](https://github.com/moyarenko/markdown/commit/325396b299fd12bc03f5a763d938e12f6aefc1a7))
* **deps-dev:** Bump enzyme from 3.10.0 to 3.11.0 ([#408](https://github.com/moyarenko/markdown/issues/408)) ([9fa958c](https://github.com/moyarenko/markdown/commit/9fa958c1a655a2d509d7b255797143f5d725e333))
* **deps-dev:** Bump enzyme-adapter-react-16 from 1.15.1 to 1.15.2 ([#417](https://github.com/moyarenko/markdown/issues/417)) ([ea4f5cc](https://github.com/moyarenko/markdown/commit/ea4f5ccf93d40b17d934be952fb750c2f9e62503))
* Bump eslint from 6.6.0 to 6.7.1 ([#386](https://github.com/moyarenko/markdown/issues/386)) ([5340dde](https://github.com/moyarenko/markdown/commit/5340dde1830711e7fdd9ecb4c153a757a2e7069e))
* Bump eslint from 6.7.1 to 6.7.2 ([#395](https://github.com/moyarenko/markdown/issues/395)) ([6179015](https://github.com/moyarenko/markdown/commit/61790156133da41aaf317d55de0b9018018aef51))
* **deps-dev:** Bump eslint from 6.7.2 to 6.8.0 ([#410](https://github.com/moyarenko/markdown/issues/410)) ([7595b99](https://github.com/moyarenko/markdown/commit/7595b99c770f5a089be51d799c989ecd3fa0d444))
* **deps-dev:** Bump eslint from 7.0.0 to 7.1.0 ([#709](https://github.com/moyarenko/markdown/issues/709)) ([e1652e3](https://github.com/moyarenko/markdown/commit/e1652e304ee2b70980061469ab1d6f08c0a3867f))
* **deps-dev:** bump eslint from 7.1.0 to 7.2.0 ([#773](https://github.com/moyarenko/markdown/issues/773)) ([22e2eca](https://github.com/moyarenko/markdown/commit/22e2ecad068e8014debcc49e9944665478afc2af))
* **deps-dev:** bump eslint from 7.19.0 to 7.29.0 ([#184](https://github.com/moyarenko/markdown/issues/184)) ([7e032cf](https://github.com/moyarenko/markdown/commit/7e032cfc4b91ac9b0f43e0931ae770d8ff54fcbe))
* **deps-dev:** bump eslint from 7.2.0 to 7.3.1 ([#813](https://github.com/moyarenko/markdown/issues/813)) ([172d3a0](https://github.com/moyarenko/markdown/commit/172d3a0deb99c896b178d578e155307d03bf2419))
* **deps-dev:** bump eslint from 7.29.0 to 7.30.0 ([#209](https://github.com/moyarenko/markdown/issues/209)) ([5309d0e](https://github.com/moyarenko/markdown/commit/5309d0e2cc84e2eb6ad971d5d58ace789c1cedd3))
* **deps-dev:** bump eslint from 7.31.0 to 7.32.0 ([#248](https://github.com/moyarenko/markdown/issues/248)) ([76e5a79](https://github.com/moyarenko/markdown/commit/76e5a7970c729a1198fec21c97e6eaacbc81b6a5))
* Bump eslint-plugin-jest from 23.0.3 to 23.0.4 ([#391](https://github.com/moyarenko/markdown/issues/391)) ([d49a802](https://github.com/moyarenko/markdown/commit/d49a802f96b91343cb471cb1de133c4ae85b4d64))
* Bump eslint-plugin-jest from 23.0.4 to 23.1.1 ([#394](https://github.com/moyarenko/markdown/issues/394)) ([5565e38](https://github.com/moyarenko/markdown/commit/5565e3821a9f042af116f7c5aca2dbf0fee9ecd4))
* Bump eslint-plugin-react from 7.16.0 to 7.17.0 ([#392](https://github.com/moyarenko/markdown/issues/392)) ([da75860](https://github.com/moyarenko/markdown/commit/da758607cc37bb601fad1d60419164560c4b80db))
* Bump fetch-har from 2.0.0 to 2.1.0 ([#382](https://github.com/moyarenko/markdown/issues/382)) ([69b2e89](https://github.com/moyarenko/markdown/commit/69b2e890b573044cf3e90e5947b422317e1efc67))
* **deps:** Bump fetch-har from 2.2.1 to 2.3.0 ([#487](https://github.com/moyarenko/markdown/issues/487)) ([191782e](https://github.com/moyarenko/markdown/commit/191782e5515ad2ee6e5ac8f1c00b969fdaf09510))
* **deps:** Bump fetch-har from 2.3.0 to 2.3.1 ([#550](https://github.com/moyarenko/markdown/issues/550)) ([0489556](https://github.com/moyarenko/markdown/commit/0489556ba5fca405dbeaac15b6bd1b61ecdfd47d))
* **deps:** bump fetch-har from 2.3.1 to 2.3.2 ([#786](https://github.com/moyarenko/markdown/issues/786)) ([66bcfe9](https://github.com/moyarenko/markdown/commit/66bcfe996b171be266c35063952f5e8876094001))
* **deps-dev:** Bump gh-pages from 2.1.1 to 2.2.0 ([#442](https://github.com/moyarenko/markdown/issues/442)) ([80907f1](https://github.com/moyarenko/markdown/commit/80907f1da9e2b2768923495949a689a73282b416))
* **deps:** bump hast-util-sanitize from 2.0.3 to 4.0.0 ([#156](https://github.com/moyarenko/markdown/issues/156)) ([e5fda67](https://github.com/moyarenko/markdown/commit/e5fda673e975259b3b09a8260b93b52240c970d4))
* **deps:** bump httpsnippet from 1.19.1 to 1.20.0 ([#778](https://github.com/moyarenko/markdown/issues/778)) ([44ff101](https://github.com/moyarenko/markdown/commit/44ff101c69089157c8031eae6806508575f37897))
* **deps-dev:** bump husky from 4.3.8 to 7.0.1 ([#208](https://github.com/moyarenko/markdown/issues/208)) ([1f09f4a](https://github.com/moyarenko/markdown/commit/1f09f4ad0a308ac3b82e4663e59259baa73ee068))
* **deps-dev:** Bump jest from 24.9.0 to 25.1.0 ([#457](https://github.com/moyarenko/markdown/issues/457)) ([817de29](https://github.com/moyarenko/markdown/commit/817de295e03eb1103c653a19592c2ddf70b96dd8))
* **deps-dev:** Bump jest from 25.1.0 to 25.2.4 ([#571](https://github.com/moyarenko/markdown/issues/571)) ([67e29a2](https://github.com/moyarenko/markdown/commit/67e29a203459aa541c20c3918bfe32d505101c67))
* **deps-dev:** Bump jest from 25.2.4 to 25.3.0 ([#594](https://github.com/moyarenko/markdown/issues/594)) ([134d5e8](https://github.com/moyarenko/markdown/commit/134d5e819483d4a627a57aa0933a5aff249ed293))
* **deps-dev:** Bump jest from 25.3.0 to 25.4.0 ([#612](https://github.com/moyarenko/markdown/issues/612)) ([3c63767](https://github.com/moyarenko/markdown/commit/3c637679e63bee5b32f97e893400b3bc7c739b00))
* **deps-dev:** Bump jest from 25.4.0 to 26.0.1 ([#694](https://github.com/moyarenko/markdown/issues/694)) ([8c901c6](https://github.com/moyarenko/markdown/commit/8c901c68293b2d9243f604255d8342fe79f23674))
* **deps-dev:** bump jest from 26.0.1 to 26.1.0 ([#815](https://github.com/moyarenko/markdown/issues/815)) ([6afc047](https://github.com/moyarenko/markdown/commit/6afc04796d0466a0cd274b5799e2b8ecf7335e03))
* **deps-dev:** bump jest-image-snapshot from 4.3.0 to 4.5.1 ([#211](https://github.com/moyarenko/markdown/issues/211)) ([c31fd91](https://github.com/moyarenko/markdown/commit/c31fd916c0f89bf41bac00697d94a06b89f9f5f7))
* **deps-dev:** bump jest-image-snapshot to ^5.1.0 ([91243a5](https://github.com/moyarenko/markdown/commit/91243a52159212ce3ffe541fb38bbc02240475e9))
* **deps-dev:** bump lerna from 3.18.3 to 3.18.4 ([#375](https://github.com/moyarenko/markdown/issues/375)) ([706429a](https://github.com/moyarenko/markdown/commit/706429a068a927a4ffb2c9a0d29f4ad61caf9257))
* Bump lerna from 3.18.4 to 3.19.0 ([#390](https://github.com/moyarenko/markdown/issues/390)) ([894d372](https://github.com/moyarenko/markdown/commit/894d3721917cfe4d4f2401fe7a10b94acce652ac))
* **deps-dev:** Bump lerna from 3.19.0 to 3.20.2 ([#428](https://github.com/moyarenko/markdown/issues/428)) ([5ad2aaf](https://github.com/moyarenko/markdown/commit/5ad2aaf353c265ff9622856fe331dbfdd174a448))
* **deps-dev:** Bump lerna from 3.20.2 to 3.22.0 ([#706](https://github.com/moyarenko/markdown/issues/706)) ([dba4a99](https://github.com/moyarenko/markdown/commit/dba4a99898b7720e5229a8c63c4754a3d5bfbfbd))
* **deps-dev:** bump lerna from 3.22.0 to 3.22.1 ([#805](https://github.com/moyarenko/markdown/issues/805)) ([a9d5823](https://github.com/moyarenko/markdown/commit/a9d582326b9bddd303adadcde05c90ffa8e3ce90))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/api-logs ([#843](https://github.com/moyarenko/markdown/issues/843)) ([50d7600](https://github.com/moyarenko/markdown/commit/50d7600c4a2d9332667676104367b38a03cbb5d6))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/markdown ([#844](https://github.com/moyarenko/markdown/issues/844)) ([0088cd9](https://github.com/moyarenko/markdown/commit/0088cd9a394e8edb5c854fa77bf83e90f35266ba))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/oas-to-har ([#840](https://github.com/moyarenko/markdown/issues/840)) ([9a7ffa7](https://github.com/moyarenko/markdown/commit/9a7ffa7b79c2c2e501774d11568f7f78efea9e35))
* **deps:** bump lodash from 4.17.15 to 4.17.19 in /packages/variable ([#839](https://github.com/moyarenko/markdown/issues/839)) ([fc545eb](https://github.com/moyarenko/markdown/commit/fc545ebe10ac6e1011c2d66a376d10b87705ffa7))
* **deps:** bump lodash in /packages/api-explorer ([#837](https://github.com/moyarenko/markdown/issues/837)) ([1f62788](https://github.com/moyarenko/markdown/commit/1f62788fe78bb94b4360a451d359149a0280d676))
* **deps:** bump lodash in /packages/markdown-magic ([#841](https://github.com/moyarenko/markdown/issues/841)) ([aa44d36](https://github.com/moyarenko/markdown/commit/aa44d36a16da6acdd83c606221432b04bc294c1b))
* **deps:** bump lodash in /packages/oas-extensions ([#836](https://github.com/moyarenko/markdown/issues/836)) ([d0e2f34](https://github.com/moyarenko/markdown/commit/d0e2f3442421752b406d8ec99a1beb93ac04f45d))
* **deps:** bump lodash in /packages/oas-to-snippet ([#842](https://github.com/moyarenko/markdown/issues/842)) ([e71eb63](https://github.com/moyarenko/markdown/commit/e71eb63245af070b720d9b41059da300f8fa8198))
* **deps:** bump lodash in /packages/syntax-highlighter ([#845](https://github.com/moyarenko/markdown/issues/845)) ([07759a6](https://github.com/moyarenko/markdown/commit/07759a6b98768373c72490b99f318378f95d9a67))
* **deps-dev:** bump mini-css-extract-plugin from 1.3.6 to 2.1.0 ([#214](https://github.com/moyarenko/markdown/issues/214)) ([427e304](https://github.com/moyarenko/markdown/commit/427e3044e9cc04b38bef927b10ae28d040042c87))
* **deps:** bump minimist from 1.2.5 to 1.2.6 ([#458](https://github.com/moyarenko/markdown/issues/458)) ([adc55c2](https://github.com/moyarenko/markdown/commit/adc55c2a54295ecd8978d7d1d0589c18ed724d3c))
* **deps-dev:** Bump nock from 11.7.0 to 11.7.1 ([#425](https://github.com/moyarenko/markdown/issues/425)) ([a2eeba8](https://github.com/moyarenko/markdown/commit/a2eeba8b7a566620e62895509ed75dcadf1a25ec))
* **deps-dev:** Bump nock from 11.7.1 to 11.7.2 ([#441](https://github.com/moyarenko/markdown/issues/441)) ([06d8b76](https://github.com/moyarenko/markdown/commit/06d8b76567d7b9a051289191f19ebae4b49be644))
* **deps-dev:** Bump nock from 11.7.2 to 11.8.2 ([#475](https://github.com/moyarenko/markdown/issues/475)) ([86b1f1f](https://github.com/moyarenko/markdown/commit/86b1f1f48d75c075e99af9dfcc1683f0bd797f76))
* **deps-dev:** Bump nock from 11.8.2 to 12.0.0 ([#480](https://github.com/moyarenko/markdown/issues/480)) ([26a4c1f](https://github.com/moyarenko/markdown/commit/26a4c1f1ad2e687d18d9b786947372db9f68a191))
* **deps-dev:** Bump nock from 12.0.0 to 12.0.1 ([#488](https://github.com/moyarenko/markdown/issues/488)) ([f49c5ee](https://github.com/moyarenko/markdown/commit/f49c5eed2f85641e92278ced243a1eb54643e094))
* **deps-dev:** Bump nock from 12.0.1 to 12.0.2 ([#497](https://github.com/moyarenko/markdown/issues/497)) ([75e5488](https://github.com/moyarenko/markdown/commit/75e5488dc337ea16ab879976072a6367ecf6b9ad))
* **deps-dev:** bump nock from 12.0.2 to 12.0.3 ([#785](https://github.com/moyarenko/markdown/issues/785)) ([8d9028a](https://github.com/moyarenko/markdown/commit/8d9028af358919ef76167f0841fc019797591a8a))
* **deps-dev:** bump nock from 12.0.3 to 13.0.2 ([#827](https://github.com/moyarenko/markdown/issues/827)) ([12a52b5](https://github.com/moyarenko/markdown/commit/12a52b5b4df8aa07b947aac994346b33d554017d))
* Bump node-fetch from 2.0.0-alpha.9 to 2.6.0 ([#280](https://github…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants