fix
@ -7,10 +7,10 @@
|
||||
"recycle_bin_folder": "_v_recycle_bin",
|
||||
"sub_directories": [
|
||||
{
|
||||
"name": "en_US"
|
||||
"name": "en_us"
|
||||
},
|
||||
{
|
||||
"name": "zh_CN"
|
||||
"name": "zh_cn"
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
|
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 738 KiB After Width: | Height: | Size: 738 KiB |
Before Width: | Height: | Size: 859 KiB After Width: | Height: | Size: 859 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 347 KiB After Width: | Height: | Size: 347 KiB |
Before Width: | Height: | Size: 176 KiB After Width: | Height: | Size: 176 KiB |
Before Width: | Height: | Size: 563 KiB After Width: | Height: | Size: 563 KiB |
Before Width: | Height: | Size: 533 KiB After Width: | Height: | Size: 533 KiB |
Before Width: | Height: | Size: 198 KiB After Width: | Height: | Size: 198 KiB |
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
Before Width: | Height: | Size: 200 KiB After Width: | Height: | Size: 200 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
@ -36,7 +36,7 @@
|
||||
"attachments": [
|
||||
],
|
||||
"created_time": "2018-11-24T08:46:16Z",
|
||||
"modified_time": "2018-11-24T08:53:24Z",
|
||||
"modified_time": "2018-11-24T08:59:53Z",
|
||||
"name": "donate.md",
|
||||
"tags": [
|
||||
]
|
Before Width: | Height: | Size: 858 B After Width: | Height: | Size: 858 B |
Before Width: | Height: | Size: 861 B After Width: | Height: | Size: 861 B |
Before Width: | Height: | Size: 838 B After Width: | Height: | Size: 838 B |
Before Width: | Height: | Size: 361 KiB After Width: | Height: | Size: 361 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
@ -4,7 +4,7 @@ VNote is an open source and free project maintained by the author in part time.
|
||||
- Keep monitoring VNote and sending feedback for improvement.
|
||||
- Spread and promote VNote to your friends.
|
||||
- Participate in the development of VNote and send Pull Request to make VNote perfect.
|
||||
- Really appreciate your donate to VNote
|
||||
- Really appreciate your donate to VNote.
|
||||
- Alipay: `tamlokveer@gmail.com`
|
||||

|
||||
- WeChat
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
@ -8,9 +8,9 @@
|
||||
var language = languageString.split(/[_-]/)[0].toLowerCase();
|
||||
switch (language) {
|
||||
case 'zh':
|
||||
return "/zh_CN/";
|
||||
return "zh_cn/";
|
||||
default:
|
||||
return "/en_US/";
|
||||
return "en_us/";
|
||||
}
|
||||
})();
|
||||
window.location.href = redir;
|
||||
|
97
zh_cn/index.html
Normal file
@ -0,0 +1,97 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="generator" content="Viki">
|
||||
|
||||
<title>Viki - A simple Wiki page in Markdown from notebook of VNote</title>
|
||||
<link id="favicon" rel="icon" href="https://github.com/tamlok/viki/raw/master/resources/viki.ico">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link href="https://cdn.bootcss.com/twitter-bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jstree@3.3.7/dist/themes/default/style.min.css">
|
||||
|
||||
<link href="css/highlightjs.css" rel="stylesheet">
|
||||
<link href="css/viki.css" rel="stylesheet">
|
||||
<link href="css/custom.css" rel="stylesheet">
|
||||
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
|
||||
<script src="https://cdn.bootcss.com/popper.js/1.14.3/umd/popper.min.js"></script>
|
||||
<script src="https://cdn.bootcss.com/twitter-bootstrap/4.1.3/js/bootstrap.min.js"></script>
|
||||
|
||||
<!--
|
||||
<script src="https://cdn.bootcss.com/highlight.js/9.13.1/highlight.min.js"></script>
|
||||
<script src="https://cdn.bootcss.com/highlight.js/9.13.1/languages/go.min.js"></script>
|
||||
<script src="https://cdn.bootcss.com/highlight.js/9.13.1/languages/yaml.min.js"></script>
|
||||
<script src="https://cdn.bootcss.com/highlight.js/9.13.1/languages/r.min.js"></script>
|
||||
<script src="https://cdn.bootcss.com/highlight.js/9.13.1/languages/scala.min.js"></script>
|
||||
<script src="https://cdn.bootcss.com/highlight.js/9.13.1/languages/shell.min.js"></script>
|
||||
<script src="https://cdn.bootcss.com/highlight.js/9.13.1/languages/swift.min.js"></script>
|
||||
<script src="https://cdn.bootcss.com/highlightjs-line-numbers.js/2.5.0/highlightjs-line-numbers.min.js"></script>
|
||||
-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/highlight.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/languages/yaml.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/languages/go.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/languages/r.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/languages/scala.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/languages/swift.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/languages/shell.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/languages/powershell.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlightjs-line-numbers.js/2.5.0/highlightjs-line-numbers.min.js"></script>
|
||||
|
||||
<!--
|
||||
<script src="https://cdn.bootcss.com/mermaid/8.0.0-rc.8/mermaid.min.js"></script>
|
||||
-->
|
||||
<script src="https://cdn.jsdelivr.net/npm/mermaid@8.0.0-rc.8/dist/mermaid.min.js"></script>
|
||||
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/raphael/2.2.7/raphael.min.js"></script>
|
||||
<!--
|
||||
<script src="https://cdn.bootcss.com/flowchart/1.11.3/flowchart.min.js"></script>
|
||||
-->
|
||||
<script src="https://cdn.jsdelivr.net/npm/flowchart.js@1.11.3/release/flowchart.min.js"></script>
|
||||
|
||||
<!--
|
||||
<script src="http://s.plantuml.com/synchro2.js"></script>
|
||||
<script src="http://s.plantuml.com/zopfli.raw.min.js"></script>
|
||||
-->
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/jstree@3.3.7/dist/jstree.min.js"></script>
|
||||
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_HTMLorMML" async></script>
|
||||
|
||||
<script type="text/x-mathjax-config">
|
||||
MathJax.Hub.Config({
|
||||
tex2jax: {
|
||||
inlineMath: [['$','$'], ['\\(','\\)']],
|
||||
processEscapes: true,
|
||||
processClass: "tex2jax_process|language-mathjax|lang-mathjax"
|
||||
},
|
||||
showProcessingMessages: false,
|
||||
skipStartupTypeset: true,
|
||||
TeX: {
|
||||
Macros: {
|
||||
bm: ["\\boldsymbol{#1}", 1]
|
||||
},
|
||||
equationNumbers: {
|
||||
autoNumber: "AMS"
|
||||
}
|
||||
},
|
||||
messageStyle: "none"
|
||||
});
|
||||
MathJax.Hub.Register.StartupHook("End", function() {
|
||||
if (typeof MathJaxReady != "undefined") {
|
||||
MathJaxReady();
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<!-- viki script -->
|
||||
<script src="js/viki.js"></script>
|
||||
<script src="js/custom.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|