go back to outlining inline code (single backticks) with light border

and make it possible to use code in post/page titles
This commit is contained in:
2020-06-30 09:37:03 -04:00
parent b6cbb737c9
commit 3cadddc799
9 changed files with 339 additions and 326 deletions
+195 -186
View File
@@ -1,18 +1,25 @@
@charset "UTF-8"; @charset "UTF-8";
div#content { // all code
// all code code {
code { font-family: $webfont-mono;
font-family: $webfont-mono; font-size: 0.95em;
font-size: 0.95em; letter-spacing: 0;
letter-spacing: 0; page-break-inside: avoid;
page-break-inside: avoid; }
}
// inline code in paragraphs (single tildes) // inline code in paragraphs/elsewhere (single backticks)
p code { :not(pre) > code {
padding: 0 0.15em; padding: 0.15em 0.3em;
} margin: 0 0.1em;
}
// allow for inline code in post/page titles -- override above styles and match title
.title code {
background: none !important;
border: 0 !important;
padding: 0 !important;
color: inherit !important;
} }
// code fences // code fences
@@ -28,195 +35,197 @@ div.highlight {
pre { pre {
padding-left: 1.7em; padding-left: 1.7em;
} }
}
// global table styles for line numbers and font styles // global table styles for line numbers and font styles
.chroma { .chroma {
.lntable { .lntable {
border-spacing: 0; border-spacing: 0;
padding: 0; padding: 0;
margin: 0; margin: 0;
border: 0; border: 0;
width: auto; width: auto;
overflow: auto; overflow: auto;
display: block; display: block;
} }
// columns // columns
.lntd { .lntd {
vertical-align: top; vertical-align: top;
padding: 0; padding: 0;
margin: 0; margin: 0;
border: 0; border: 0;
} }
// line numbers // line numbers
.ln, .ln,
.lnt { .lnt {
user-select: none; user-select: none;
} }
.gh, .gh,
.gi, .gi,
.gu { .gu {
font-weight: bold; font-weight: bold;
} }
.kd, .kd,
.nb, //.nb,
.nl, //.nl,
//.nv, //.nv,
.vc, .vc,
.vg, .vg,
.vi, .vi,
.ge { .ge {
font-style: italic; font-style: italic;
} }
.gl { .gl {
text-decoration: underline; text-decoration: underline;
}
} }
} }
/*! Syntax Highlighting (light) - modified from Monokai Light: https://github.com/mlgill/pygments-style-monokailight */ /*! Syntax Highlighting (light) - modified from Monokai Light: https://github.com/mlgill/pygments-style-monokailight */
body.light { body.light {
div.highlight { div.highlight,
color: #464646; :not(pre) > code {
background-color: #fdfdfd; color: #313131;
border: 1px solid #d2d2d2; background-color: #fbfbfb;
border: 1px solid #d5d5d5;
}
.chroma { .chroma {
.k, .k,
.kc, .kc,
.kd, .kd,
.kp, .kp,
.kr, .kr,
.kt, .kt,
.no { .no {
color: #029cb9; color: #029cb9;
} }
.na, .na,
.nc, .nc,
.nd, .nd,
.ne, .ne,
.nf, .nf,
.nx { .nx {
color: #70a800; color: #70a800;
} }
.nt, .nt,
.o, .o,
.ow, .ow,
.kn { .kn {
color: #f92672; color: #f92672;
} }
.l, .l,
.se, .se,
.m, .m,
.mb, .mb,
.mf, .mf,
.mh, .mh,
.mi, .mi,
.il, .il,
.mo { .mo {
color: #ae81ff; color: #ae81ff;
} }
.ld, .ld,
.s, .s,
.sa, .sa,
.sb, .sb,
.sc, .sc,
.dl, .dl,
.sd, .sd,
.s2, .s2,
.sh, .sh,
.si, .si,
.sx, .sx,
.sr, .sr,
.s1, .s1,
.ss { .ss {
color: #d88200; color: #d88200;
} }
.c, .c,
.ch, .ch,
.cm, .cm,
.c1, .c1,
.cs, .cs,
.cp, .cp,
.cpf { .cpf {
color: #75715e; color: #75715e;
} }
.lnt { .lnt {
color: #8a8a8a; color: #8a8a8a;
}
} }
} }
} }
/*! Syntax Highlighting (dark) - modified from Dracula: https://github.com/dracula/pygments */ /*! Syntax Highlighting (dark) - modified from Dracula: https://github.com/dracula/pygments */
body.dark { body.dark {
div.highlight { div.highlight,
:not(pre) > code {
color: #dfdfdf; color: #dfdfdf;
background-color: #1f1f1f; background-color: #1e1e1e;
border: 1px solid #646464; border: 1px solid #535353;
}
.chroma { .chroma {
.k, .k,
.kc, .kc,
.kd, .kd,
.kp, .kp,
.kr, .kr,
.kt, .kt,
.no { .no {
color: #3b9dd2; color: #3b9dd2;
} }
.na, .na,
.nc, .nc,
.nd, .nd,
.ne, .ne,
.nf, .nf,
.nx { .nx {
color: #78df55; color: #78df55;
} }
.nt, .nt,
.o, .o,
.ow, .ow,
.kn { .kn {
color: #f95757; color: #f95757;
} }
.l, .l,
.se, .se,
.m, .m,
.mb, .mb,
.mf, .mf,
.mh, .mh,
.mi, .mi,
.il, .il,
.mo { .mo {
color: #d588fb; color: #d588fb;
} }
.ld, .ld,
.s, .s,
.sa, .sa,
.sb, .sb,
.sc, .sc,
.dl, .dl,
.sd, .sd,
.s2, .s2,
.sh, .sh,
.si, .si,
.sx, .sx,
.sr, .sr,
.s1, .s1,
.ss { .ss {
color: #fd992a; color: #fd992a;
} }
.c, .c,
.ch, .ch,
.cm, .cm,
.c1, .c1,
.cs, .cs,
.cp, .cp,
.cpf { .cpf {
color: #929292; color: #929292;
} }
.lnt { .lnt {
color: #b1b1b1; color: #b1b1b1;
}
} }
} }
} }
+1 -1
View File
@@ -24,7 +24,7 @@ main#single {
} }
} }
h1#title { h1.title {
margin-top: 0.3em; margin-top: 0.3em;
margin-bottom: 0.6em; margin-bottom: 0.6em;
margin-left: -0.03em; // TODO: why is this indented slightly? margin-left: -0.03em; // TODO: why is this indented slightly?
+1 -1
View File
@@ -1,6 +1,6 @@
--- ---
title: "Jake Jarvis Front-End Web Developer in Boston, MA" title: "Jake Jarvis Front-End Web Developer in Boston, MA"
date: 2020-06-24 18:04:46-0400 date: 2020-06-30 09:12:37-0400
type: home type: home
sitemap: sitemap:
changefreq: weekly changefreq: weekly
+2 -2
View File
@@ -1,5 +1,5 @@
--- ---
title: "How To: Safely Rename 'master' Branch on GitHub ✊🏾" title: "How To: Safely Rename `master` Branch on GitHub ✊🏾"
date: 2020-06-28 09:28:52-0400 date: 2020-06-28 09:28:52-0400
description: 'Some of the most popular open-source projects are renaming their default branch from "master" on GitHub. Here''s how to do so, and safely.' description: 'Some of the most popular open-source projects are renaming their default branch from "master" on GitHub. Here''s how to do so, and safely.'
tags: tags:
@@ -39,7 +39,7 @@ git branch -m master main
### 2. Push the new branch to GitHub: ### 2. Push the new branch to GitHub:
The first command should be familiar. `-u` sets the new branch as the local default at the same time, and the second line ensures our local `HEAD` points to our new branch on GitHub. The first command is probably familiar. `-u` sets the new branch as the local default at the same time, and the second line ensures our local `HEAD` points to our new branch on GitHub.
```bash {linenos=false} ```bash {linenos=false}
git push -u origin main git push -u origin main
+7 -3
View File
@@ -67,7 +67,7 @@
font-variant-ligatures: normal; font-variant-ligatures: normal;
font-size: 0.92em; font-size: 0.92em;
letter-spacing: -0.011em; letter-spacing: -0.011em;
background: #ffffff; background-color: #ffffff;
color: #222222; color: #222222;
-webkit-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;
} }
@@ -211,18 +211,19 @@
} }
div.highlight, code { div.highlight, code {
font-family: "Hack", monospace; font-family: "Hack", monospace;
background: #fbfbfb;
font-size: 0.95em; font-size: 0.95em;
letter-spacing: 0; letter-spacing: 0;
page-break-inside: avoid; page-break-inside: avoid;
margin: 0 0.1em;
} }
p code { p code {
border: 1px solid #dddddd; border: 1px solid #dddddd;
padding: 0.2em; padding: 0.2em;
background-color: #fbfbfb;
} }
div.highlight { div.highlight {
border: 1px solid #dddddd; border: 1px solid #dddddd;
border-left: 3px solid #0e6dc2; background-color: #fbfbfb;
line-height: 1.6; line-height: 1.6;
max-width: 100%; max-width: 100%;
overflow-x: scroll; overflow-x: scroll;
@@ -233,6 +234,9 @@
display: block; display: block;
margin-left: 1.5em; margin-left: 1.5em;
} }
div.highlight code {
margin: 0;
}
div.highlight span.k, div.highlight span.kc, div.highlight span.kd, div.highlight span.kp, div.highlight span.kr, div.highlight span.kt, div.highlight span.no { color: #0e6dc2; } div.highlight span.k, div.highlight span.kc, div.highlight span.kd, div.highlight span.kp, div.highlight span.kr, div.highlight span.kt, div.highlight span.no { color: #0e6dc2; }
div.highlight span.n, div.highlight span.bp, div.highlight span.nb, div.highlight span.ni, div.highlight span.fm, div.highlight span.nl, div.highlight span.nn, div.highlight span.py, div.highlight span.nv, div.highlight span.vc, div.highlight span.vg, div.highlight span.vi, div.highlight span.vm, div.highlight span.p { color: #111111; } div.highlight span.n, div.highlight span.bp, div.highlight span.nb, div.highlight span.ni, div.highlight span.fm, div.highlight span.nl, div.highlight span.nn, div.highlight span.py, div.highlight span.nv, div.highlight span.vc, div.highlight span.vg, div.highlight span.vi, div.highlight span.vm, div.highlight span.p { color: #111111; }
div.highlight span.na, div.highlight span.nc, div.highlight span.nd, div.highlight span.ne, div.highlight span.nf, div.highlight span.nx { color: #337a15; } div.highlight span.na, div.highlight span.nc, div.highlight span.nd, div.highlight span.ne, div.highlight span.nf, div.highlight span.nx { color: #337a15; }
+1 -1
View File
@@ -5,7 +5,7 @@
<a class="no-underline" href="{{ .Permalink }}" title="{{ .Date.Format "Mon, Jan 2 2006 3:04:05 PM MST" }}">{{ .Date.Format "January 2, 2006" }}</a>{{ with .Scratch.Get "sourceURL" }}<span class="dash"></span><a class="no-underline" href="{{ . | safeURL }}" title="Edit this post on GitHub" target="_blank" rel="noopener">Improve This Post</a>{{ end }} <a class="no-underline" href="{{ .Permalink }}" title="{{ .Date.Format "Mon, Jan 2 2006 3:04:05 PM MST" }}">{{ .Date.Format "January 2, 2006" }}</a>{{ with .Scratch.Get "sourceURL" }}<span class="dash"></span><a class="no-underline" href="{{ . | safeURL }}" title="Edit this post on GitHub" target="_blank" rel="noopener">Improve This Post</a>{{ end }}
</div> </div>
<h1 id="title"><a class="no-underline" href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1> <h1 class="title"><a class="no-underline" href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
<div id="content"> <div id="content">
{{ .Content }} {{ .Content }}
+1 -1
View File
@@ -13,4 +13,4 @@
{{ if .Get "link" }}</a>{{ end }} {{ if .Get "link" }}</a>{{ end }}
</p> </p>
{{- with .Inner }}<p class="caption">{{ . | $.Page.RenderString | safeHTML }}</p>{{ end -}} {{ with .Inner }}<p class="caption">{{ . | $.Page.RenderString | safeHTML }}</p>{{ end }}
+1 -1
View File
@@ -52,7 +52,7 @@
"imagemin-pngquant": "^9.0.0", "imagemin-pngquant": "^9.0.0",
"imagemin-svgo": "^8.0.0", "imagemin-svgo": "^8.0.0",
"lint-staged": "^10.2.11", "lint-staged": "^10.2.11",
"markdownlint-cli": "~0.23.1", "markdownlint-cli": "~0.23.2",
"netlify-plugin-cache": "*", "netlify-plugin-cache": "*",
"netlify-plugin-debug-cache": "*", "netlify-plugin-debug-cache": "*",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
+130 -130
View File
@@ -2,26 +2,26 @@
# yarn lockfile v1 # yarn lockfile v1
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.3": "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.3.tgz#324bcfd8d35cd3d47dae18cde63d752086435e9a" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
integrity sha512-fDx9eNW0qz0WkUeqL6tXEXzVlPh6Y5aCDEZesl0xBGA8ndRukX91Uk44ZqnkECp01NAZUdCAl+aiQNGi0k88Eg== integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
dependencies: dependencies:
"@babel/highlight" "^7.10.3" "@babel/highlight" "^7.10.4"
"@babel/core@>=7.9.0": "@babel/core@>=7.9.0":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.3.tgz#73b0e8ddeec1e3fdd7a2de587a60e17c440ec77e" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.4.tgz#780e8b83e496152f8dd7df63892b2e052bf1d51d"
integrity sha512-5YqWxYE3pyhIi84L84YcwjeEgS+fa7ZjK6IBVGTjDVfm64njkR2lfDhVR5OudLk8x2GK59YoSyVv+L/03k1q9w== integrity sha512-3A0tS0HWpy4XujGc7QtOIHTeNwUgWaZc/WuS5YQrfhU67jnVmsD6OGPc1AKHH0LJHQICGncy3+YUjIhVlfDdcA==
dependencies: dependencies:
"@babel/code-frame" "^7.10.3" "@babel/code-frame" "^7.10.4"
"@babel/generator" "^7.10.3" "@babel/generator" "^7.10.4"
"@babel/helper-module-transforms" "^7.10.1" "@babel/helper-module-transforms" "^7.10.4"
"@babel/helpers" "^7.10.1" "@babel/helpers" "^7.10.4"
"@babel/parser" "^7.10.3" "@babel/parser" "^7.10.4"
"@babel/template" "^7.10.3" "@babel/template" "^7.10.4"
"@babel/traverse" "^7.10.3" "@babel/traverse" "^7.10.4"
"@babel/types" "^7.10.3" "@babel/types" "^7.10.4"
convert-source-map "^1.7.0" convert-source-map "^1.7.0"
debug "^4.1.0" debug "^4.1.0"
gensync "^1.0.0-beta.1" gensync "^1.0.0-beta.1"
@@ -31,149 +31,149 @@
semver "^5.4.1" semver "^5.4.1"
source-map "^0.5.0" source-map "^0.5.0"
"@babel/generator@^7.10.3": "@babel/generator@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.3.tgz#32b9a0d963a71d7a54f5f6c15659c3dbc2a523a5" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.4.tgz#e49eeed9fe114b62fa5b181856a43a5e32f5f243"
integrity sha512-drt8MUHbEqRzNR0xnF8nMehbY11b1SDkRw03PSNH/3Rb2Z35oxkddVSi3rcaak0YJQ86PCuE7Qx1jSFhbLNBMA== integrity sha512-toLIHUIAgcQygFZRAQcsLQV3CBuX6yOIru1kJk/qqqvcRmZrYe6WavZTSG+bB8MxhnL9YPf+pKQfuiP161q7ng==
dependencies: dependencies:
"@babel/types" "^7.10.3" "@babel/types" "^7.10.4"
jsesc "^2.5.1" jsesc "^2.5.1"
lodash "^4.17.13" lodash "^4.17.13"
source-map "^0.5.0" source-map "^0.5.0"
"@babel/helper-function-name@^7.10.3": "@babel/helper-function-name@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.3.tgz#79316cd75a9fa25ba9787ff54544307ed444f197" resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"
integrity sha512-FvSj2aiOd8zbeqijjgqdMDSyxsGHaMt5Tr0XjQsGKHD3/1FP3wksjnLAWzxw7lvXiej8W1Jt47SKTZ6upQNiRw== integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==
dependencies: dependencies:
"@babel/helper-get-function-arity" "^7.10.3" "@babel/helper-get-function-arity" "^7.10.4"
"@babel/template" "^7.10.3" "@babel/template" "^7.10.4"
"@babel/types" "^7.10.3" "@babel/types" "^7.10.4"
"@babel/helper-get-function-arity@^7.10.3": "@babel/helper-get-function-arity@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.3.tgz#3a28f7b28ccc7719eacd9223b659fdf162e4c45e" resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"
integrity sha512-iUD/gFsR+M6uiy69JA6fzM5seno8oE85IYZdbVVEuQaZlEzMO2MXblh+KSPJgsZAUx0EEbWXU0yJaW7C9CdAVg== integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
dependencies: dependencies:
"@babel/types" "^7.10.3" "@babel/types" "^7.10.4"
"@babel/helper-member-expression-to-functions@^7.10.1": "@babel/helper-member-expression-to-functions@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.3.tgz#bc3663ac81ac57c39148fef4c69bf48a77ba8dd6" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.4.tgz#7cd04b57dfcf82fce9aeae7d4e4452fa31b8c7c4"
integrity sha512-q7+37c4EPLSjNb2NmWOjNwj0+BOyYlssuQ58kHEWk1Z78K5i8vTUsteq78HMieRPQSl/NtpQyJfdjt3qZ5V2vw== integrity sha512-m5j85pK/KZhuSdM/8cHUABQTAslV47OjfIB9Cc7P+PvlAoBzdb79BGNfw8RhT5Mq3p+xGd0ZfAKixbrUZx0C7A==
dependencies: dependencies:
"@babel/types" "^7.10.3" "@babel/types" "^7.10.4"
"@babel/helper-module-imports@^7.10.1": "@babel/helper-module-imports@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.3.tgz#766fa1d57608e53e5676f23ae498ec7a95e1b11a" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620"
integrity sha512-Jtqw5M9pahLSUWA+76nhK9OG8nwYXzhQzVIGFoNaHnXF/r4l7kz4Fl0UAW7B6mqC5myoJiBP5/YQlXQTMfHI9w== integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==
dependencies: dependencies:
"@babel/types" "^7.10.3" "@babel/types" "^7.10.4"
"@babel/helper-module-transforms@^7.10.1": "@babel/helper-module-transforms@^7.10.4":
version "7.10.1" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.1.tgz#24e2f08ee6832c60b157bb0936c86bef7210c622" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.4.tgz#ca1f01fdb84e48c24d7506bb818c961f1da8805d"
integrity sha512-RLHRCAzyJe7Q7sF4oy2cB+kRnU4wDZY/H2xJFGof+M+SJEGhZsb+GFj5j1AD8NiSaVBJ+Pf0/WObiXu/zxWpFg== integrity sha512-Er2FQX0oa3nV7eM1o0tNCTx7izmQtwAQsIiaLRWtavAAEcskb0XJ5OjJbVrYXWOTr8om921Scabn4/tzlx7j1Q==
dependencies: dependencies:
"@babel/helper-module-imports" "^7.10.1" "@babel/helper-module-imports" "^7.10.4"
"@babel/helper-replace-supers" "^7.10.1" "@babel/helper-replace-supers" "^7.10.4"
"@babel/helper-simple-access" "^7.10.1" "@babel/helper-simple-access" "^7.10.4"
"@babel/helper-split-export-declaration" "^7.10.1" "@babel/helper-split-export-declaration" "^7.10.4"
"@babel/template" "^7.10.1" "@babel/template" "^7.10.4"
"@babel/types" "^7.10.1" "@babel/types" "^7.10.4"
lodash "^4.17.13" lodash "^4.17.13"
"@babel/helper-optimise-call-expression@^7.10.1": "@babel/helper-optimise-call-expression@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.3.tgz#f53c4b6783093195b0f69330439908841660c530" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673"
integrity sha512-kT2R3VBH/cnSz+yChKpaKRJQJWxdGoc6SjioRId2wkeV3bK0wLLioFpJROrX0U4xr/NmxSSAWT/9Ih5snwIIzg== integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==
dependencies: dependencies:
"@babel/types" "^7.10.3" "@babel/types" "^7.10.4"
"@babel/helper-replace-supers@^7.10.1": "@babel/helper-replace-supers@^7.10.4":
version "7.10.1" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.1.tgz#ec6859d20c5d8087f6a2dc4e014db7228975f13d" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf"
integrity sha512-SOwJzEfpuQwInzzQJGjGaiG578UYmyi2Xw668klPWV5n07B73S0a9btjLk/52Mlcxa+5AdIYqws1KyXRfMoB7A== integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==
dependencies: dependencies:
"@babel/helper-member-expression-to-functions" "^7.10.1" "@babel/helper-member-expression-to-functions" "^7.10.4"
"@babel/helper-optimise-call-expression" "^7.10.1" "@babel/helper-optimise-call-expression" "^7.10.4"
"@babel/traverse" "^7.10.1" "@babel/traverse" "^7.10.4"
"@babel/types" "^7.10.1" "@babel/types" "^7.10.4"
"@babel/helper-simple-access@^7.10.1": "@babel/helper-simple-access@^7.10.4":
version "7.10.1" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.1.tgz#08fb7e22ace9eb8326f7e3920a1c2052f13d851e" resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461"
integrity sha512-VSWpWzRzn9VtgMJBIWTZ+GP107kZdQ4YplJlCmIrjoLVSi/0upixezHCDG8kpPVTBJpKfxTH01wDhh+jS2zKbw== integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==
dependencies: dependencies:
"@babel/template" "^7.10.1" "@babel/template" "^7.10.4"
"@babel/types" "^7.10.1" "@babel/types" "^7.10.4"
"@babel/helper-split-export-declaration@^7.10.1": "@babel/helper-split-export-declaration@^7.10.4":
version "7.10.1" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.1.tgz#c6f4be1cbc15e3a868e4c64a17d5d31d754da35f" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1"
integrity sha512-UQ1LVBPrYdbchNhLwj6fetj46BcFwfS4NllJo/1aJsT+1dLTEnXJL0qHqtY7gPzF8S2fXBJamf1biAXV3X077g== integrity sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg==
dependencies: dependencies:
"@babel/types" "^7.10.1" "@babel/types" "^7.10.4"
"@babel/helper-validator-identifier@^7.10.3": "@babel/helper-validator-identifier@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.3.tgz#60d9847f98c4cea1b279e005fdb7c28be5412d15" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
integrity sha512-bU8JvtlYpJSBPuj1VUmKpFGaDZuLxASky3LhaKj3bmpSTY6VWooSM8msk+Z0CZoErFye2tlABF6yDkT3FOPAXw== integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
"@babel/helpers@^7.10.1": "@babel/helpers@^7.10.4":
version "7.10.1" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.1.tgz#a6827b7cb975c9d9cef5fd61d919f60d8844a973" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044"
integrity sha512-muQNHF+IdU6wGgkaJyhhEmI54MOZBKsFfsXFhboz1ybwJ1Kl7IHlbm2a++4jwrmY5UYsgitt5lfqo1wMFcHmyw== integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==
dependencies: dependencies:
"@babel/template" "^7.10.1" "@babel/template" "^7.10.4"
"@babel/traverse" "^7.10.1" "@babel/traverse" "^7.10.4"
"@babel/types" "^7.10.1" "@babel/types" "^7.10.4"
"@babel/highlight@^7.10.3": "@babel/highlight@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.3.tgz#c633bb34adf07c5c13156692f5922c81ec53f28d" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
integrity sha512-Ih9B/u7AtgEnySE2L2F0Xm0GaM729XqqLfHkalTsbjXGyqmf/6M0Cu0WpvqueUlW+xk88BHw9Nkpj49naU+vWw== integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
dependencies: dependencies:
"@babel/helper-validator-identifier" "^7.10.3" "@babel/helper-validator-identifier" "^7.10.4"
chalk "^2.0.0" chalk "^2.0.0"
js-tokens "^4.0.0" js-tokens "^4.0.0"
"@babel/parser@^7.10.3": "@babel/parser@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.3.tgz#7e71d892b0d6e7d04a1af4c3c79d72c1f10f5315" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.4.tgz#9eedf27e1998d87739fb5028a5120557c06a1a64"
integrity sha512-oJtNJCMFdIMwXGmx+KxuaD7i3b8uS7TTFYW/FNG2BT8m+fmGHoiPYoH0Pe3gya07WuFmM5FCDIr1x0irkD/hyA== integrity sha512-8jHII4hf+YVDsskTF6WuMB3X4Eh+PsUkC2ljq22so5rHvH+T8BzyL94VOdyFLNR8tBSVXOTbNHOKpR4TfRxVtA==
"@babel/template@^7.10.1", "@babel/template@^7.10.3": "@babel/template@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.3.tgz#4d13bc8e30bf95b0ce9d175d30306f42a2c9a7b8" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278"
integrity sha512-5BjI4gdtD+9fHZUsaxPHPNpwa+xRkDO7c7JbhYn2afvrkDu5SfAAbi9AIMXw2xEhO/BR35TqiW97IqNvCo/GqA== integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==
dependencies: dependencies:
"@babel/code-frame" "^7.10.3" "@babel/code-frame" "^7.10.4"
"@babel/parser" "^7.10.3" "@babel/parser" "^7.10.4"
"@babel/types" "^7.10.3" "@babel/types" "^7.10.4"
"@babel/traverse@^7.10.1", "@babel/traverse@^7.10.3": "@babel/traverse@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.3.tgz#0b01731794aa7b77b214bcd96661f18281155d7e" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.4.tgz#e642e5395a3b09cc95c8e74a27432b484b697818"
integrity sha512-qO6623eBFhuPm0TmmrUFMT1FulCmsSeJuVGhiLodk2raUDFhhTECLd9E9jC4LBIWziqt4wgF6KuXE4d+Jz9yug== integrity sha512-aSy7p5THgSYm4YyxNGz6jZpXf+Ok40QF3aA2LyIONkDHpAcJzDUqlCKXv6peqYUs2gmic849C/t2HKw2a2K20Q==
dependencies: dependencies:
"@babel/code-frame" "^7.10.3" "@babel/code-frame" "^7.10.4"
"@babel/generator" "^7.10.3" "@babel/generator" "^7.10.4"
"@babel/helper-function-name" "^7.10.3" "@babel/helper-function-name" "^7.10.4"
"@babel/helper-split-export-declaration" "^7.10.1" "@babel/helper-split-export-declaration" "^7.10.4"
"@babel/parser" "^7.10.3" "@babel/parser" "^7.10.4"
"@babel/types" "^7.10.3" "@babel/types" "^7.10.4"
debug "^4.1.0" debug "^4.1.0"
globals "^11.1.0" globals "^11.1.0"
lodash "^4.17.13" lodash "^4.17.13"
"@babel/types@^7.10.1", "@babel/types@^7.10.3": "@babel/types@^7.10.4":
version "7.10.3" version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.3.tgz#6535e3b79fea86a6b09e012ea8528f935099de8e" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.4.tgz#369517188352e18219981efd156bfdb199fff1ee"
integrity sha512-nZxaJhBXBQ8HVoIcGsf9qWep3Oh3jCENK54V4mRF7qaJabVsAYdbTtmSD8WmAp1R6ytPiu5apMwSXyxB1WlaBA== integrity sha512-UTCFOxC3FsFHb7lkRMVvgLzaRVamXuAs2Tz4wajva4WxtVY82eZeaUBtC2Zt95FU9TiznuC0Zk35tsim8jeVpg==
dependencies: dependencies:
"@babel/helper-validator-identifier" "^7.10.3" "@babel/helper-validator-identifier" "^7.10.4"
lodash "^4.17.13" lodash "^4.17.13"
to-fast-properties "^2.0.0" to-fast-properties "^2.0.0"
@@ -2863,10 +2863,10 @@ markdown-table@^2.0.0:
dependencies: dependencies:
repeat-string "^1.0.0" repeat-string "^1.0.0"
markdownlint-cli@~0.23.1: markdownlint-cli@~0.23.2:
version "0.23.1" version "0.23.2"
resolved "https://registry.yarnpkg.com/markdownlint-cli/-/markdownlint-cli-0.23.1.tgz#2f21b5899e7260e2c6235cd336a7586d54031212" resolved "https://registry.yarnpkg.com/markdownlint-cli/-/markdownlint-cli-0.23.2.tgz#43f0a96e2699542b74fb5e6188c025e4934357fc"
integrity sha512-UARWuPILksAcVLTosUv1F1tLognNYQ/qjLRIgWwQAYqdl3QQrTPurU/X9Z2jrdAJYlOim868QsufxjYJpH0K7Q== integrity sha512-OSl5OZ8xzGN6z355cqRkiq67zPi3reJimklaF72p0554q85Dng5ToOjjSB9tDKZebSt85jX8cp+ruoQlPqOsPA==
dependencies: dependencies:
commander "~2.9.0" commander "~2.9.0"
deep-extend "~0.5.1" deep-extend "~0.5.1"
@@ -2877,18 +2877,18 @@ markdownlint-cli@~0.23.1:
jsonc-parser "~2.2.0" jsonc-parser "~2.2.0"
lodash.differencewith "~4.5.0" lodash.differencewith "~4.5.0"
lodash.flatten "~4.4.0" lodash.flatten "~4.4.0"
markdownlint "~0.20.3" markdownlint "~0.20.4"
markdownlint-rule-helpers "~0.10.0" markdownlint-rule-helpers "~0.11.0"
minimatch "~3.0.4" minimatch "~3.0.4"
minimist "~1.2.5" minimist "~1.2.5"
rc "~1.2.7" rc "~1.2.7"
markdownlint-rule-helpers@~0.10.0: markdownlint-rule-helpers@~0.11.0:
version "0.10.0" version "0.11.0"
resolved "https://registry.yarnpkg.com/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.10.0.tgz#6dd53be6f2872cea959f336978a5a21f9a4ca11e" resolved "https://registry.yarnpkg.com/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.11.0.tgz#faaaae4337771c7d88ca38ef6265afb4fbe0fb3f"
integrity sha512-0e8VUTjNdQwS7hTyNan9oOLsy4a7KEsXo3fxKMDRFRk6Jn+pLB3iKZ3mj/m6ECrlOUCxPYYmgOmmyk3bSdbIvw== integrity sha512-PhGii9dOiDJDXxiRMpK8N0FM9powprvRPsXALgkjlSPTwLh6ymH+iF3iUe3nq8KGu26tclFBlLL5xAGy/zb7FA==
markdownlint@~0.20.3: markdownlint@~0.20.4:
version "0.20.4" version "0.20.4"
resolved "https://registry.yarnpkg.com/markdownlint/-/markdownlint-0.20.4.tgz#3b34681494cdad174e14a27182b5cdefaa537823" resolved "https://registry.yarnpkg.com/markdownlint/-/markdownlint-0.20.4.tgz#3b34681494cdad174e14a27182b5cdefaa537823"
integrity sha512-jpfaPgjT0OpeBbemjYNZbzGG3hCLcAIvrm/pEY3+q/szDScG6ZonDacqySVRJAv9glbo8y4wBPJ0wgW17+9GGA== integrity sha512-jpfaPgjT0OpeBbemjYNZbzGG3hCLcAIvrm/pEY3+q/szDScG6ZonDacqySVRJAv9glbo8y4wBPJ0wgW17+9GGA==