-
-
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,6 @@ Please note that we do not consider XSS via template expressions a valid attack | |
|
||
We would like to thank the following security researchers for responsibly disclosing security issues to us. | ||
|
||
- Jeet Pal - [@jeetpal2007](https://github.com/jeetpal2007) | [Email]([email protected]) | [LinkedIn](https://in.linkedin.com/in/jeet-pal-22601a290 ) | ||
- Jeet Pal - [@jeetpal2007](https://github.com/jeetpal2007) | [Email]([email protected]) | [LinkedIn](https://in.linkedin.com/in/jeet-pal-22601a290) | ||
- Mix - [@mnixry](https://github.com/mnixry) | ||
- Aviv Keller - [@RedYetiDev](https://github.com/redyetidev) | [LinkedIn](https://www.linkedin.com/in/redyetidev) <[email protected]> |
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/[email protected]/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/[email protected]/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/[email protected]/min/vs/loader.js"></script> | ||
<script> | ||
require.config({ | ||
paths: { | ||
'vs': 'https://unpkg.com/[email protected]/min/vs' | ||
} | ||
}) | ||
require.config({ | ||
paths: { | ||
vs: 'https://unpkg.com/[email protected]/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.