Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6b384a4

Browse files
init
1 parent756c575 commit6b384a4

File tree

19 files changed

+14793
-0
lines changed

19 files changed

+14793
-0
lines changed

‎.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist/
2+
node_modules/

‎babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports={
2+
presets:["@vue/app"]
3+
};

‎content/test.md

Lines changed: 247 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,247 @@
1+
---
2+
__Advertisement :)__
3+
4+
-__[pica](https://nodeca.github.io/pica/demo/)__ - high quality and fast image
5+
resize in browser.
6+
-__[babelfish](https://github.com/nodeca/babelfish/)__ - developer friendly
7+
i18n with plurals support and easy syntax.
8+
9+
You will like those projects!
10+
11+
---
12+
13+
#h1 Heading 8-)
14+
##h2 Heading
15+
###h3 Heading
16+
####h4 Heading
17+
#####h5 Heading
18+
######h6 Heading
19+
20+
<h1>html</h1>
21+
<CodeSnippet></CodeSnippet>
22+
23+
##Horizontal Rules
24+
25+
___
26+
27+
---
28+
29+
***
30+
31+
32+
##Typographic replacements
33+
34+
Enable typographer option to see result.
35+
36+
(c) (C) (r) (R) (tm) (TM) (p) (P) +-
37+
38+
test.. test... test..... test?..... test!....
39+
40+
!!!!!! ???? ,, -- ---
41+
42+
"Smartypants, double quotes" and 'single quotes'
43+
44+
45+
##Emphasis
46+
47+
**This is bold text**
48+
49+
__This is bold text__
50+
51+
*This is italic text*
52+
53+
_This is italic text_
54+
55+
~~Strikethrough~~
56+
57+
58+
##Blockquotes
59+
60+
61+
>Blockquotes can also be nested...
62+
>>...by using additional greater-than signs right next to each other...
63+
>>>...or with spaces between arrows.
64+
65+
66+
##Lists
67+
68+
Unordered
69+
70+
+ Create a list by starting a line with`+`,`-`, or`*`
71+
+ Sub-lists are made by indenting 2 spaces:
72+
- Marker character change forces new list start:
73+
* Ac tristique libero volutpat at
74+
+ Facilisis in pretium nisl aliquet
75+
- Nulla volutpat aliquam velit
76+
+ Very easy!
77+
78+
Ordered
79+
80+
1. Lorem ipsum dolor sit amet
81+
2. Consectetur adipiscing elit
82+
3. Integer molestie lorem at massa
83+
84+
85+
1. You can use sequential numbers...
86+
1. ...or keep all the numbers as`1.`
87+
88+
Start numbering with offset:
89+
90+
57. foo
91+
1. bar
92+
93+
94+
##Code
95+
96+
Inline`code`
97+
98+
Indented code
99+
100+
// Some comments
101+
line 1 of code
102+
line 2 of code
103+
line 3 of code
104+
105+
106+
Block code "fences"
107+
108+
```
109+
Sample text here...
110+
```
111+
112+
Syntax highlighting
113+
114+
```js
115+
varfoo=function (bar) {
116+
return bar++;
117+
};
118+
119+
console.log(foo(5));
120+
```
121+
122+
##Tables
123+
124+
| Option| Description|
125+
| ------| -----------|
126+
| data| path to data files to supply the data that will be passed into templates.|
127+
| engine| engine to be used for processing templates. Handlebars is the default.|
128+
| ext| extension to be used for dest files.|
129+
130+
Right aligned columns
131+
132+
| Option| Description|
133+
| ------:| -----------:|
134+
| data| path to data files to supply the data that will be passed into templates.|
135+
| engine| engine to be used for processing templates. Handlebars is the default.|
136+
| ext| extension to be used for dest files.|
137+
138+
139+
##Links
140+
141+
[link text](http://dev.nodeca.com)
142+
143+
[link with title](http://nodeca.github.io/pica/demo/"title text!")
144+
145+
Autoconverted linkhttps://github.com/nodeca/pica (enable linkify to see)
146+
147+
148+
##Images
149+
150+
![Minion](https://octodex.github.com/images/minion.png)
151+
![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg"The Stormtroopocat")
152+
153+
Like links, Images also have a footnote style syntax
154+
155+
![Alt text][id]
156+
157+
With a reference later in the document defining the URL location:
158+
159+
[id]:https://octodex.github.com/images/dojocat.jpg"The Dojocat"
160+
161+
162+
##Plugins
163+
164+
The killer feature of`markdown-it` is very effective support of
165+
[syntax plugins](https://www.npmjs.org/browse/keyword/markdown-it-plugin).
166+
167+
168+
###[Emojies](https://github.com/markdown-it/markdown-it-emoji)
169+
170+
>Classic markup::wink: :crush::cry: :tear::laughing::yum:
171+
>
172+
>Shortcuts (emoticons): :-) :-( 8-) ;)
173+
174+
see[how to change output](https://github.com/markdown-it/markdown-it-emoji#change-output) with twemoji.
175+
176+
177+
###[Subscript](https://github.com/markdown-it/markdown-it-sub) /[Superscript](https://github.com/markdown-it/markdown-it-sup)
178+
179+
- 19^th^
180+
- H~2~O
181+
182+
183+
###[\<ins>](https://github.com/markdown-it/markdown-it-ins)
184+
185+
++Inserted text++
186+
187+
188+
###[\<mark>](https://github.com/markdown-it/markdown-it-mark)
189+
190+
==Marked text==
191+
192+
193+
###[Footnotes](https://github.com/markdown-it/markdown-it-footnote)
194+
195+
Footnote 1 link[^first].
196+
197+
Footnote 2 link[^second].
198+
199+
Inline footnote^[Text of inline footnote] definition.
200+
201+
Duplicated footnote reference[^second].
202+
203+
[^first]: Footnote**can have markup**
204+
205+
and multiple paragraphs.
206+
207+
[^second]: Footnote text.
208+
209+
210+
###[Definition lists](https://github.com/markdown-it/markdown-it-deflist)
211+
212+
Term 1
213+
214+
: Definition 1
215+
with lazy continuation.
216+
217+
Term 2 with*inline markup*
218+
219+
: Definition 2
220+
221+
{ some code, part of Definition 2 }
222+
223+
Third paragraph of definition 2.
224+
225+
_Compact style:_
226+
227+
Term 1
228+
~ Definition 1
229+
230+
Term 2
231+
~ Definition 2a
232+
~ Definition 2b
233+
234+
235+
###[Abbreviations](https://github.com/markdown-it/markdown-it-abbr)
236+
237+
This is HTML abbreviation example.
238+
239+
It converts "HTML", but keep intact partial entries like "xxxHTMLyyy" and so on.
240+
241+
*[HTML]: Hyper Text Markup Language
242+
243+
###[Custom containers](https://github.com/markdown-it/markdown-it-container)
244+
245+
::: warning
246+
*here be dragons*
247+
:::

‎content/testA.md

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
2+
#Hello
3+
4+
`<span>{{sss}}</span>`
5+
6+
>This is test.
7+
8+
- How are you?
9+
- Fine, Thank you, and you?
10+
- I'm fine, too. Thank you.
11+
- 🌚
12+
13+
```javascript
14+
importVuefrom'vue'
15+
16+
Vue.config.debug=true
17+
```
18+
19+
<divclass="test">
20+
{{ model }} test
21+
</div>
22+
23+
<compo>{{ model }}</compo>
24+
25+
<div
26+
class="abc"
27+
@click="show = false">
28+
啊哈哈哈
29+
</div>
30+
31+
>All script or style tags in html mark will be extracted.Script will be excuted, and style will be added to document head.
32+
>Notice if there is a string instance which contains special word "&lt;/script>", it will fetch a SyntaxError.
33+
>Due to the complexity to solve it, just don't do that.
34+
```html
35+
<stylescoped>
36+
.test {
37+
background-color:green;
38+
}
39+
</style>
40+
41+
<stylescoped>
42+
.abc {
43+
background-color:yellow;
44+
}
45+
</style>
46+
<script>
47+
let a=1<2;
48+
let b="<-forget it-/script>";
49+
console.log("***This script tag is successfully extracted and excuted.***")
50+
module.exports= {
51+
components: {
52+
compo: {
53+
render(h) {
54+
returnh('div', {
55+
style: {
56+
background:'red'
57+
}
58+
},this.$slots.default);
59+
}
60+
}
61+
},
62+
63+
data () {
64+
return {
65+
model:'abc'
66+
}
67+
}
68+
}
69+
</script>
70+
jjjjjjjjjjjjjjjjjjjjjj
71+
<template>
72+
<div></div>
73+
</template>
74+
```
75+
76+
77+
78+
<div>
79+
</div>
80+
81+
sadfsfs
82+
83+
大家哦哦好啊谁都发生地方上的冯绍峰s
84+
85+
>sahhhh
86+
87+
<compo>{{ model }}</compo>
88+
89+
```html
90+
<compo>{{model }}{{model }}{{model }}{{model }}{{ model }}</compo>
91+
```
92+
93+
94+
95+
<!-- <style src="./custom.css"></style>-->
96+
97+
##引入 style 文件
98+
99+
<divclass="custom">
100+
原谅色
101+
</div>

‎dist/favicon.ico

1.12 KB
Binary file not shown.

‎dist/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!DOCTYPE html><html><head><metacharset=utf-8><metahttp-equiv=X-UA-Compatiblecontent="IE=edge"><metaname=viewportcontent="width=device-width,initial-scale=1"><linkrel=iconhref=/favicon.ico><title>carvuejs-website</title><linkas=stylehref=/css/app.1d5759d2.cssrel=preload><linkas=scripthref=/js/app.c908f38a.jsrel=preload><linkas=scripthref=/js/chunk-vendors.501ab16e.jsrel=preload><linkhref=/css/app.1d5759d2.cssrel=stylesheet></head><body><noscript><strong>We're sorry but carvuejs-website doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><divid=app></div><scriptsrc=/js/chunk-vendors.501ab16e.js></script><scriptsrc=/js/app.c908f38a.js></script></body></html>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp