-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: format html&markdown files (#11531)
- Loading branch information
Showing
32 changed files
with
1,451 additions
and
1,319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
dist | ||
*.md | ||
*.html | ||
pnpm-lock.yaml | ||
CHANGELOG*.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# @vue/compiler-dom | ||
# @vue/compiler-dom |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# @vue/compiler-ssr | ||
# @vue/compiler-ssr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
<title>Vue Template Explorer</title> | ||
<link rel="stylesheet" data-name="vs/editor/editor.main" href="https://unpkg.com/monaco-editor@0.20.0/min/vs/editor/editor.main.css"> | ||
<link rel="stylesheet" href="./style.css"> | ||
<link | ||
rel="stylesheet" | ||
data-name="vs/editor/editor.main" | ||
href="https://unpkg.com/monaco-editor@0.20.0/min/vs/editor/editor.main.css" | ||
/> | ||
<link rel="stylesheet" href="./style.css" /> | ||
|
||
<div id="header"></div> | ||
<div id="source" class="editor"></div> | ||
<div id="output" class="editor"></div> | ||
|
||
<script src="https://unpkg.com/monaco-editor@0.20.0/min/vs/loader.js"></script> | ||
<script> | ||
require.config({ | ||
paths: { | ||
'vs': 'https://unpkg.com/monaco-editor@0.20.0/min/vs' | ||
} | ||
}) | ||
require.config({ | ||
paths: { | ||
vs: 'https://unpkg.com/monaco-editor@0.20.0/min/vs', | ||
}, | ||
}) | ||
</script> | ||
<script src="./dist/template-explorer.global.js"></script> | ||
<script> | ||
require(['vs/editor/editor.main'], init /* injected by build */) | ||
require(['vs/editor/editor.main'], init /* injected by build */) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
<title>Vue Template Explorer</title> | ||
<link rel="stylesheet" data-name="vs/editor/editor.main" href="./node_modules/monaco-editor/min/vs/editor/editor.main.css"> | ||
<link rel="stylesheet" href="./style.css"> | ||
<link | ||
rel="stylesheet" | ||
data-name="vs/editor/editor.main" | ||
href="./node_modules/monaco-editor/min/vs/editor/editor.main.css" | ||
/> | ||
<link rel="stylesheet" href="./style.css" /> | ||
|
||
<div id="header"></div> | ||
<div id="source" class="editor"></div> | ||
<div id="output" class="editor"></div> | ||
|
||
<script src="./node_modules/monaco-editor/min/vs/loader.js"></script> | ||
<script> | ||
require.config({ | ||
paths: { | ||
'vs': './node_modules/monaco-editor/min/vs' | ||
} | ||
}) | ||
require.config({ | ||
paths: { | ||
vs: './node_modules/monaco-editor/min/vs', | ||
}, | ||
}) | ||
</script> | ||
<script src="./dist/template-explorer.global.js"></script> | ||
<script> | ||
require(['vs/editor/editor.main'], init /* injected by build */) | ||
require(['vs/editor/editor.main'], init /* injected by build */) | ||
</script> |
Oops, something went wrong.