mirror of https://github.com/vuejs/vitepress
commit
62ca48b791
@ -0,0 +1,23 @@
|
||||
diff --git a/index.d.ts b/index.d.ts
|
||||
index 41d4a858c6ece5a61a2088733cf8b333b45603d8..2cb19bcd8fc76ae82ebe87af742916e17f49334b 100644
|
||||
--- a/index.d.ts
|
||||
+++ b/index.d.ts
|
||||
@@ -1,3 +1,15 @@
|
||||
-import MarkdownIt = require("markdown-it");
|
||||
-declare function attrs(md: MarkdownIt): void;
|
||||
-export = attrs;
|
||||
+import type MarkdownIt from 'markdown-it'
|
||||
+
|
||||
+export interface MarkdownItAttrsOptions {
|
||||
+ /** left delimiter, default is `{`(left curly bracket) */
|
||||
+ leftDelimiter?: string
|
||||
+ /** right delimiter, default is `}`(right curly bracket) */
|
||||
+ rightDelimiter?: string
|
||||
+ /** rule of allowed attribute, empty means no limit */
|
||||
+ allowedAttributes?: (string | RegExp)[]
|
||||
+}
|
||||
+
|
||||
+export default function attrsPlugin(
|
||||
+ md: MarkdownIt,
|
||||
+ options?: MarkdownItAttrsOptions
|
||||
+): void
|
||||
@ -0,0 +1,14 @@
|
||||
diff --git a/patterns.js b/patterns.js
|
||||
index e56a3b785df29e726194f2b30e86bb19a78ef902..e1f6211b92cbb2bbbe2a3c317dd9e5f1f41ab8d1 100644
|
||||
--- a/patterns.js
|
||||
+++ b/patterns.js
|
||||
@@ -28,7 +28,8 @@ module.exports = options => {
|
||||
{
|
||||
shift: 0,
|
||||
block: true,
|
||||
- info: utils.hasDelimiters('end', options)
|
||||
+ info: utils.hasDelimiters('end', options),
|
||||
+ markup: (str) => !/^[`~]{3,}$/.test(str)
|
||||
}
|
||||
],
|
||||
transform: (tokens, i) => {
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,251 +1,253 @@
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
@layer __vitepress_base {
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
*,
|
||||
::before,
|
||||
::after {
|
||||
animation-delay: -1ms !important;
|
||||
animation-duration: 1ms !important;
|
||||
animation-iteration-count: 1 !important;
|
||||
background-attachment: initial !important;
|
||||
scroll-behavior: auto !important;
|
||||
transition-duration: 0s !important;
|
||||
transition-delay: 0s !important;
|
||||
}
|
||||
}
|
||||
|
||||
*,
|
||||
::before,
|
||||
::after {
|
||||
animation-delay: -1ms !important;
|
||||
animation-duration: 1ms !important;
|
||||
animation-iteration-count: 1 !important;
|
||||
background-attachment: initial !important;
|
||||
scroll-behavior: auto !important;
|
||||
transition-duration: 0s !important;
|
||||
transition-delay: 0s !important;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
*,
|
||||
::before,
|
||||
::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
line-height: 1.4;
|
||||
font-size: 16px;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
}
|
||||
html {
|
||||
line-height: 1.4;
|
||||
font-size: 16px;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
}
|
||||
|
||||
html.dark {
|
||||
color-scheme: dark;
|
||||
}
|
||||
html.dark {
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
min-width: 320px;
|
||||
min-height: 100vh;
|
||||
line-height: 24px;
|
||||
font-family: var(--vp-font-family-base);
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
color: var(--vp-c-text-1);
|
||||
background-color: var(--vp-c-bg);
|
||||
font-synthesis: style;
|
||||
text-rendering: optimizeLegibility;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
min-width: 320px;
|
||||
min-height: 100vh;
|
||||
line-height: 24px;
|
||||
font-family: var(--vp-font-family-base);
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
color: var(--vp-c-text-1);
|
||||
background-color: var(--vp-c-bg);
|
||||
font-synthesis: style;
|
||||
text-rendering: optimizeLegibility;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
main {
|
||||
display: block;
|
||||
}
|
||||
main {
|
||||
display: block;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
margin: 0;
|
||||
line-height: 24px;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
margin: 0;
|
||||
line-height: 24px;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
strong,
|
||||
b {
|
||||
font-weight: 600;
|
||||
}
|
||||
strong,
|
||||
b {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/**
|
||||
* Avoid 300ms click delay on touch devices that support the `touch-action`
|
||||
* CSS property.
|
||||
*
|
||||
* In particular, unlike most other browsers, IE11+Edge on Windows 10 on
|
||||
* touch devices and IE Mobile 10-11 DON'T remove the click delay when
|
||||
* `<meta name="viewport" content="width=device-width">` is present.
|
||||
* However, they DO support removing the click delay via
|
||||
* `touch-action: manipulation`.
|
||||
*
|
||||
* See:
|
||||
* - http://v4-alpha.getbootstrap.com/content/reboot/#click-delay-optimization-for-touch
|
||||
* - http://caniuse.com/#feat=css-touch-action
|
||||
* - http://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
|
||||
*/
|
||||
a,
|
||||
area,
|
||||
button,
|
||||
[role='button'],
|
||||
input,
|
||||
label,
|
||||
select,
|
||||
summary,
|
||||
textarea {
|
||||
touch-action: manipulation;
|
||||
}
|
||||
/**
|
||||
* Avoid 300ms click delay on touch devices that support the `touch-action`
|
||||
* CSS property.
|
||||
*
|
||||
* In particular, unlike most other browsers, IE11+Edge on Windows 10 on
|
||||
* touch devices and IE Mobile 10-11 DON'T remove the click delay when
|
||||
* `<meta name="viewport" content="width=device-width">` is present.
|
||||
* However, they DO support removing the click delay via
|
||||
* `touch-action: manipulation`.
|
||||
*
|
||||
* See:
|
||||
* - http://v4-alpha.getbootstrap.com/content/reboot/#click-delay-optimization-for-touch
|
||||
* - http://caniuse.com/#feat=css-touch-action
|
||||
* - http://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
|
||||
*/
|
||||
a,
|
||||
area,
|
||||
button,
|
||||
[role='button'],
|
||||
input,
|
||||
label,
|
||||
select,
|
||||
summary,
|
||||
textarea {
|
||||
touch-action: manipulation;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: inherit;
|
||||
}
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: inherit;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
ol,
|
||||
ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 0;
|
||||
}
|
||||
blockquote {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: var(--vp-font-family-mono);
|
||||
}
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: var(--vp-font-family-mono);
|
||||
}
|
||||
|
||||
img,
|
||||
svg,
|
||||
video,
|
||||
canvas,
|
||||
audio,
|
||||
iframe,
|
||||
embed,
|
||||
object {
|
||||
display: block;
|
||||
}
|
||||
img,
|
||||
svg,
|
||||
video,
|
||||
canvas,
|
||||
audio,
|
||||
iframe,
|
||||
embed,
|
||||
object {
|
||||
display: block;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0;
|
||||
}
|
||||
figure {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
img,
|
||||
video {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
img,
|
||||
video {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
}
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 0;
|
||||
font-family: inherit;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
}
|
||||
button {
|
||||
padding: 0;
|
||||
font-family: inherit;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
button:enabled,
|
||||
[role='button']:enabled {
|
||||
cursor: pointer;
|
||||
}
|
||||
button:enabled,
|
||||
[role='button']:enabled {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
button:focus,
|
||||
button:focus-visible {
|
||||
outline: 1px dotted;
|
||||
outline: 4px auto -webkit-focus-ring-color;
|
||||
}
|
||||
button:focus,
|
||||
button:focus-visible {
|
||||
outline: 1px dotted;
|
||||
outline: 4px auto -webkit-focus-ring-color;
|
||||
}
|
||||
|
||||
button:focus:not(:focus-visible) {
|
||||
outline: none !important;
|
||||
}
|
||||
button:focus:not(:focus-visible) {
|
||||
outline: none !important;
|
||||
}
|
||||
|
||||
input:focus,
|
||||
textarea:focus,
|
||||
select:focus {
|
||||
outline: none;
|
||||
}
|
||||
input:focus,
|
||||
textarea:focus,
|
||||
select:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
input {
|
||||
background-color: transparent;
|
||||
}
|
||||
input {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
input:-ms-input-placeholder,
|
||||
textarea:-ms-input-placeholder {
|
||||
color: var(--vp-c-text-3);
|
||||
}
|
||||
input:-ms-input-placeholder,
|
||||
textarea:-ms-input-placeholder {
|
||||
color: var(--vp-c-text-3);
|
||||
}
|
||||
|
||||
input::-ms-input-placeholder,
|
||||
textarea::-ms-input-placeholder {
|
||||
color: var(--vp-c-text-3);
|
||||
}
|
||||
input::-ms-input-placeholder,
|
||||
textarea::-ms-input-placeholder {
|
||||
color: var(--vp-c-text-3);
|
||||
}
|
||||
|
||||
input::placeholder,
|
||||
textarea::placeholder {
|
||||
color: var(--vp-c-text-3);
|
||||
}
|
||||
input::placeholder,
|
||||
textarea::placeholder {
|
||||
color: var(--vp-c-text-3);
|
||||
}
|
||||
|
||||
input::-webkit-outer-spin-button,
|
||||
input::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
input::-webkit-outer-spin-button,
|
||||
input::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
input[type='number'] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
input[type='number'] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
select {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
select {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
fieldset {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
li,
|
||||
p {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
li,
|
||||
p {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
vite-error-overlay {
|
||||
z-index: 9999;
|
||||
}
|
||||
vite-error-overlay {
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
mjx-container {
|
||||
overflow-x: auto;
|
||||
}
|
||||
mjx-container {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
mjx-container > svg {
|
||||
display: inline-block;
|
||||
margin: auto;
|
||||
mjx-container > svg {
|
||||
display: inline-block;
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,48 +0,0 @@
|
||||
// Modified from https://github.com/egoist/markdown-it-highlight-lines
|
||||
// Now this plugin is only used to normalize line attrs.
|
||||
// The else part of line highlights logic is in './highlight.ts'.
|
||||
|
||||
import type { MarkdownItAsync } from 'markdown-it-async'
|
||||
|
||||
const RE = /{([\d,-]+)}/
|
||||
|
||||
export const highlightLinePlugin = (md: MarkdownItAsync) => {
|
||||
const fence = md.renderer.rules.fence!
|
||||
md.renderer.rules.fence = (...args) => {
|
||||
const [tokens, idx] = args
|
||||
const token = tokens[idx]
|
||||
|
||||
// due to use of markdown-it-attrs, the {0} syntax would have been
|
||||
// converted to attrs on the token
|
||||
const attr = token.attrs && token.attrs[0]
|
||||
|
||||
let lines = null
|
||||
|
||||
if (!attr) {
|
||||
// markdown-it-attrs maybe disabled
|
||||
const rawInfo = token.info
|
||||
|
||||
if (!rawInfo || !RE.test(rawInfo)) {
|
||||
return fence(...args)
|
||||
}
|
||||
|
||||
const langName = rawInfo.replace(RE, '').trim()
|
||||
|
||||
// ensure the next plugin get the correct lang
|
||||
token.info = langName
|
||||
|
||||
lines = RE.exec(rawInfo)![1]
|
||||
}
|
||||
|
||||
if (!lines) {
|
||||
lines = attr![0]
|
||||
|
||||
if (!lines || !/[\d,-]+/.test(lines)) {
|
||||
return fence(...args)
|
||||
}
|
||||
}
|
||||
|
||||
token.info += ' ' + lines
|
||||
return fence(...args)
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue