@diplodoc/cli-tests 5.34.8 → 5.35.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/e2e/__snapshots__/files.spec.ts.snap +161 -0
- package/e2e/__snapshots__/neuro-expert.test.ts.snap +12 -23
- package/mocks/files/input/_assets/test.csv +0 -0
- package/mocks/files/input/_assets/test.docx +0 -0
- package/mocks/files/input/_assets/test.txt +0 -0
- package/mocks/files/input/_assets/test.xlsx +0 -0
- package/mocks/files/input/index.md +7 -0
- package/mocks/neuro-expert/input/ru/page2.md +5 -0
- package/package.json +1 -1
- /package/e2e/{files.test.ts → files.spec.ts} +0 -0
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
2
|
+
|
|
3
|
+
exports[`Static files from _assets directory > Download link should be enabled > filelist 1`] = `
|
|
4
|
+
"[
|
|
5
|
+
"_assets/test.csv",
|
|
6
|
+
"_assets/test.docx",
|
|
7
|
+
"_assets/test.txt",
|
|
8
|
+
"_assets/test.xlsx",
|
|
9
|
+
"_assets/test.yaml",
|
|
10
|
+
"index.md",
|
|
11
|
+
"pc-index.yaml",
|
|
12
|
+
"toc.yaml"
|
|
13
|
+
]"
|
|
14
|
+
`;
|
|
15
|
+
|
|
16
|
+
exports[`Static files from _assets directory > Download link should be enabled > filelist 2`] = `
|
|
17
|
+
"[
|
|
18
|
+
"_assets/test.csv",
|
|
19
|
+
"_assets/test.docx",
|
|
20
|
+
"_assets/test.txt",
|
|
21
|
+
"_assets/test.xlsx",
|
|
22
|
+
"_assets/test.yaml",
|
|
23
|
+
"index.html",
|
|
24
|
+
"pc-index.html",
|
|
25
|
+
"toc.js"
|
|
26
|
+
]"
|
|
27
|
+
`;
|
|
28
|
+
|
|
29
|
+
exports[`Static files from _assets directory > Download link should be enabled 1`] = `
|
|
30
|
+
"---
|
|
31
|
+
metadata:
|
|
32
|
+
- name: generator
|
|
33
|
+
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
34
|
+
vcsPath: index.md
|
|
35
|
+
---
|
|
36
|
+
### Download static file
|
|
37
|
+
|
|
38
|
+
Текст {% file src="_assets/test.yaml" name="Configuration File" %} потом текст
|
|
39
|
+
|
|
40
|
+
Текст {% file src="_assets/test.txt" name="Configuration File txt" %} потом текст
|
|
41
|
+
|
|
42
|
+
Текст {% file src="_assets/test.docx" name="Configuration File txt" %} потом текст
|
|
43
|
+
|
|
44
|
+
Текст {% file src="_assets/test.xlsx" name="Configuration File txt" %} потом текст
|
|
45
|
+
|
|
46
|
+
Текст {% file src="_assets/test.csv" name="Configuration File txt" %} потом текст
|
|
47
|
+
|
|
48
|
+
Текс <a href="_assets/test.yaml" download="Config">Скачать</a> потом текст
|
|
49
|
+
|
|
50
|
+
Текс [Download](_assets/test.yaml){download="Config"} потом текст
|
|
51
|
+
|
|
52
|
+
[Link to pc page](./pc-index.yaml)"
|
|
53
|
+
`;
|
|
54
|
+
|
|
55
|
+
exports[`Static files from _assets directory > Download link should be enabled 2`] = `
|
|
56
|
+
"description: []
|
|
57
|
+
meta:
|
|
58
|
+
metadata:
|
|
59
|
+
- name: generator
|
|
60
|
+
content: Diplodoc Platform vDIPLODOC-VERSION
|
|
61
|
+
keywords:
|
|
62
|
+
- keyword: '{{ datalens-name }}'
|
|
63
|
+
- keyword: '{{ datalens-full-name }}'
|
|
64
|
+
- keyword: Сервис {{ datalens-name }}
|
|
65
|
+
- keyword: Сервис для бизнес аналитики
|
|
66
|
+
- keyword: BI аналитика
|
|
67
|
+
- keyword: Визуализация данных в {{ yandex-cloud }}
|
|
68
|
+
- keyword: Как подключиться к источнику данных
|
|
69
|
+
- keyword: бизнес-метрики в {{ yandex-cloud }}
|
|
70
|
+
- keyword: Аналитика {{ yandex-cloud }}
|
|
71
|
+
vcsPath: pc-index.yaml
|
|
72
|
+
links:
|
|
73
|
+
- title: Подключения
|
|
74
|
+
description: Подключайте различные источники данных
|
|
75
|
+
href: concepts/connection
|
|
76
|
+
- title: Датасеты
|
|
77
|
+
description: Описывайте структуру данных, полученных из источника
|
|
78
|
+
href: dataset/
|
|
79
|
+
- title: Чарты
|
|
80
|
+
description: >-
|
|
81
|
+
Стройте чарты с помощью Self-service-конструктора визуализаций или
|
|
82
|
+
используйте JavaScript-кастомизацию
|
|
83
|
+
href: concepts/chart/
|
|
84
|
+
- title: Дашборды
|
|
85
|
+
description: Собирайте свои чарты на одной странице
|
|
86
|
+
href: concepts/dashboard
|
|
87
|
+
- title: Управление доступом
|
|
88
|
+
description: Какие права доступа нужны для работы с сервисом
|
|
89
|
+
href: security/
|
|
90
|
+
"
|
|
91
|
+
`;
|
|
92
|
+
|
|
93
|
+
exports[`Static files from _assets directory > Download link should be enabled 3`] = `
|
|
94
|
+
"title: Test123
|
|
95
|
+
href: index.md
|
|
96
|
+
path: toc.yaml
|
|
97
|
+
items:
|
|
98
|
+
- name: Yaml index
|
|
99
|
+
href: pc-index.yaml
|
|
100
|
+
"
|
|
101
|
+
`;
|
|
102
|
+
|
|
103
|
+
exports[`Static files from _assets directory > Download link should be enabled 4`] = `
|
|
104
|
+
"<!DOCTYPE html>
|
|
105
|
+
<html lang="ru" dir="ltr">
|
|
106
|
+
<head>
|
|
107
|
+
<meta charset="utf-8">
|
|
108
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
109
|
+
<base href="./" />
|
|
110
|
+
<title>Test123</title>
|
|
111
|
+
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
112
|
+
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
113
|
+
<link type="text/css" rel="stylesheet" href="_assets/file-extension.css"/>
|
|
114
|
+
</head>
|
|
115
|
+
<body class="g-root g-root_theme_light">
|
|
116
|
+
<div id="root"></div>
|
|
117
|
+
<script type="application/json" id="diplodoc-state">
|
|
118
|
+
{"data":{"leading":false,"html":"<h3 id=\\"download-static-file\\"><a href=\\"index.html#download-static-file\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">Download static file</span></a>Download static file</h3>/n<p>Текст <a href=\\"_assets/test.yaml\\" download=\\"Configuration File\\" class=\\"yfm-file\\"><span class=\\"yfm-file__icon\\"></span>Configuration File</a> потом текст</p>/n<p>Текст <a href=\\"_assets/test.txt\\" download=\\"Configuration File txt\\" class=\\"yfm-file\\"><span class=\\"yfm-file__icon\\"></span>Configuration File txt</a> потом текст</p>/n<p>Текст <a href=\\"_assets/test.docx\\" download=\\"Configuration File txt\\" class=\\"yfm-file\\"><span class=\\"yfm-file__icon\\"></span>Configuration File txt</a> потом текст</p>/n<p>Текст <a href=\\"_assets/test.xlsx\\" download=\\"Configuration File txt\\" class=\\"yfm-file\\"><span class=\\"yfm-file__icon\\"></span>Configuration File txt</a> потом текст</p>/n<p>Текст <a href=\\"_assets/test.csv\\" download=\\"Configuration File txt\\" class=\\"yfm-file\\"><span class=\\"yfm-file__icon\\"></span>Configuration File txt</a> потом текст</p>/n<p>Текс <a href=\\"_assets/test.yaml\\" download=\\"Config\\">Скачать</a> потом текст</p>/n<p>Текс <a href=\\"_assets/test.yaml\\" download=\\"Config\\">Download</a> потом текст</p>/n<p><a href=\\"pc-index.html\\">Link to pc page</a></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"style":["_assets/file-extension.css"],"vcsPath":"index.md"},"headings":[],"title":""},"router":{"pathname":"index","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
119
|
+
</script>
|
|
120
|
+
<script type="application/javascript">
|
|
121
|
+
const data = document.querySelector('script#diplodoc-state');
|
|
122
|
+
window.__DATA__ = JSON.parse((function unescape(string) {
|
|
123
|
+
return string.replace(/</g, "<").replace(/>/g, ">").replace(/&/g, "&");
|
|
124
|
+
})(data.innerText));
|
|
125
|
+
window.STATIC_CONTENT = false;
|
|
126
|
+
</script>
|
|
127
|
+
<script type="application/javascript" defer src="toc.js"></script>
|
|
128
|
+
</body>
|
|
129
|
+
</html>"
|
|
130
|
+
`;
|
|
131
|
+
|
|
132
|
+
exports[`Static files from _assets directory > Download link should be enabled 5`] = `
|
|
133
|
+
"<!DOCTYPE html>
|
|
134
|
+
<html lang="ru" dir="ltr">
|
|
135
|
+
<head>
|
|
136
|
+
<meta charset="utf-8">
|
|
137
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
138
|
+
<base href="./" />
|
|
139
|
+
<title>Test123</title>
|
|
140
|
+
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
141
|
+
<meta name="keywords" content="[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]">
|
|
142
|
+
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
143
|
+
</head>
|
|
144
|
+
<body class="g-root g-root_theme_light">
|
|
145
|
+
<div id="root"></div>
|
|
146
|
+
<script type="application/json" id="diplodoc-state">
|
|
147
|
+
{"data":{"leading":true,"data":{"description":[],"links":[{"title":"Подключения","description":"Подключайте различные источники данных","href":"concepts/connection/index.html"},{"title":"Датасеты","description":"Описывайте структуру данных, полученных из источника","href":"dataset/index.html"},{"title":"Чарты","description":"Стройте чарты с помощью Self-service-конструктора визуализаций или используйте JavaScript-кастомизацию","href":"concepts/chart/index.html"},{"title":"Дашборды","description":"Собирайте свои чарты на одной странице","href":"concepts/dashboard/index.html"},{"title":"Управление доступом","description":"Какие права доступа нужны для работы с сервисом","href":"security/index.html"}]},"meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"keywords":[{"keyword":"{{ datalens-name }}"},{"keyword":"{{ datalens-full-name }}"},{"keyword":"Сервис {{ datalens-name }}"},{"keyword":"Сервис для бизнес аналитики"},{"keyword":"BI аналитика"},{"keyword":"Визуализация данных в {{ yandex-cloud }}"},{"keyword":"Как подключиться к источнику данных"},{"keyword":"бизнес-метрики в {{ yandex-cloud }}"},{"keyword":"Аналитика {{ yandex-cloud }}"}],"vcsPath":"pc-index.yaml"},"title":""},"router":{"pathname":"pc-index","depth":1,"base":"./"},"lang":"ru","langs":["ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
148
|
+
</script>
|
|
149
|
+
<script type="application/javascript">
|
|
150
|
+
const data = document.querySelector('script#diplodoc-state');
|
|
151
|
+
window.__DATA__ = JSON.parse((function unescape(string) {
|
|
152
|
+
return string.replace(/</g, "<").replace(/>/g, ">").replace(/&/g, "&");
|
|
153
|
+
})(data.innerText));
|
|
154
|
+
window.STATIC_CONTENT = false;
|
|
155
|
+
</script>
|
|
156
|
+
<script type="application/javascript" defer src="toc.js"></script>
|
|
157
|
+
</body>
|
|
158
|
+
</html>"
|
|
159
|
+
`;
|
|
160
|
+
|
|
161
|
+
exports[`Static files from _assets directory > Download link should be enabled 6`] = `"window.__DATA__.data.toc = {"title":"Test123","href":"index.html","path":"toc.yaml","items":[{"name":"Yaml index","href":"pc-index.html","id":"UUID"}],"id":"UUID"};"`;
|
|
@@ -111,7 +111,6 @@ exports[`Neuro-expert > Neuro-expert 4`] = `
|
|
|
111
111
|
<link rel="alternate" href="en/index.html" hreflang="en" />
|
|
112
112
|
<link rel="alternate" href="ru/index.html" hreflang="ru" />
|
|
113
113
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
114
|
-
<meta name="neuroExpert" content="[object Object]">
|
|
115
114
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
116
115
|
</head>
|
|
117
116
|
<body class="g-root g-root_theme_light">
|
|
@@ -143,7 +142,6 @@ exports[`Neuro-expert > Neuro-expert 5`] = `
|
|
|
143
142
|
<link rel="alternate" href="en/page1.html" hreflang="en" />
|
|
144
143
|
<link rel="alternate" href="ru/page1.html" hreflang="ru" />
|
|
145
144
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
146
|
-
<meta name="neuroExpert" content="[object Object]">
|
|
147
145
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
148
146
|
</head>
|
|
149
147
|
<body class="g-root g-root_theme_light">
|
|
@@ -228,7 +226,7 @@ exports[`Neuro-expert > Neuro-expert 9`] = `
|
|
|
228
226
|
<link rel="alternate" href="en/folder/index.html" hreflang="en" />
|
|
229
227
|
<link rel="alternate" href="ru/folder/index.html" hreflang="ru" />
|
|
230
228
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
231
|
-
<meta http-equiv="Content-Security-Policy" content="script-src https://yastatic.net; connect-src https://browserweb.s3.mdst.yandex.net; frame-src https://expert.yandex.ru; font-src https://yastatic.net;">
|
|
229
|
+
<meta http-equiv="Content-Security-Policy" content="script-src https://yastatic.net; connect-src https://browserweb.s3.mdst.yandex.net https://expert.yandex.ru; frame-src https://expert.yandex.ru; font-src https://yastatic.net;">
|
|
232
230
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
233
231
|
</head>
|
|
234
232
|
<body class="g-root g-root_theme_light">
|
|
@@ -281,7 +279,7 @@ exports[`Neuro-expert > Neuro-expert 10`] = `
|
|
|
281
279
|
<link rel="alternate" href="en/index-test-html/index.html" hreflang="en" />
|
|
282
280
|
<link rel="alternate" href="ru/index-test-html/index.html" hreflang="ru" />
|
|
283
281
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
284
|
-
<meta http-equiv="Content-Security-Policy" content="script-src https://yastatic.net; connect-src https://browserweb.s3.mdst.yandex.net; frame-src https://expert.yandex.ru; font-src https://yastatic.net;">
|
|
282
|
+
<meta http-equiv="Content-Security-Policy" content="script-src https://yastatic.net; connect-src https://browserweb.s3.mdst.yandex.net https://expert.yandex.ru; frame-src https://expert.yandex.ru; font-src https://yastatic.net;">
|
|
285
283
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
286
284
|
</head>
|
|
287
285
|
<body class="g-root g-root_theme_light">
|
|
@@ -334,7 +332,7 @@ exports[`Neuro-expert > Neuro-expert 11`] = `
|
|
|
334
332
|
<link rel="alternate" href="en/index.html" hreflang="en" />
|
|
335
333
|
<link rel="alternate" href="ru/index.html" hreflang="ru" />
|
|
336
334
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
337
|
-
<meta http-equiv="Content-Security-Policy" content="script-src https://yastatic.net; connect-src https://browserweb.s3.mdst.yandex.net; frame-src https://expert.yandex.ru; font-src https://yastatic.net;">
|
|
335
|
+
<meta http-equiv="Content-Security-Policy" content="script-src https://yastatic.net; connect-src https://browserweb.s3.mdst.yandex.net https://expert.yandex.ru; frame-src https://expert.yandex.ru; font-src https://yastatic.net;">
|
|
338
336
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
339
337
|
</head>
|
|
340
338
|
<body class="g-root g-root_theme_light">
|
|
@@ -387,7 +385,7 @@ exports[`Neuro-expert > Neuro-expert 12`] = `
|
|
|
387
385
|
<link rel="alternate" href="en/page1.html" hreflang="en" />
|
|
388
386
|
<link rel="alternate" href="ru/page1.html" hreflang="ru" />
|
|
389
387
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
390
|
-
<meta http-equiv="Content-Security-Policy" content="script-src https://yastatic.net; connect-src https://browserweb.s3.mdst.yandex.net; frame-src https://expert.yandex.ru; font-src https://yastatic.net;">
|
|
388
|
+
<meta http-equiv="Content-Security-Policy" content="script-src https://yastatic.net; connect-src https://browserweb.s3.mdst.yandex.net https://expert.yandex.ru; frame-src https://expert.yandex.ru; font-src https://yastatic.net;">
|
|
391
389
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
392
390
|
</head>
|
|
393
391
|
<body class="g-root g-root_theme_light">
|
|
@@ -440,13 +438,13 @@ exports[`Neuro-expert > Neuro-expert 13`] = `
|
|
|
440
438
|
<link rel="alternate" href="en/page2.html" hreflang="en" />
|
|
441
439
|
<link rel="alternate" href="ru/page2.html" hreflang="ru" />
|
|
442
440
|
<meta name="generator" content="Diplodoc Platform vDIPLODOC-VERSION">
|
|
443
|
-
<meta http-equiv="Content-Security-Policy" content="script-src https://yastatic.net; connect-src https://browserweb.s3.mdst.yandex.net; frame-src https://expert.yandex.ru; font-src https://yastatic.net;">
|
|
441
|
+
<meta http-equiv="Content-Security-Policy" content="script-src https://yastatic.net; connect-src https://browserweb.s3.mdst.yandex.net https://expert.yandex.ru; frame-src https://expert.yandex.ru; font-src https://yastatic.net;">
|
|
444
442
|
<style type="text/css">html, body {min-height:100vh; height:100vh;}</style>
|
|
445
443
|
</head>
|
|
446
444
|
<body class="g-root g-root_theme_light">
|
|
447
445
|
<div id="root"></div>
|
|
448
446
|
<script type="application/json" id="diplodoc-state">
|
|
449
|
-
{"data":{"leading":false,"html":"<h2 id=\\"hesh\\"><a href=\\"ru/page2.html#hesh\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">хэш</span></a>хэш</h2>/n<p><a href=\\"ru/folder/index.html\\">Ссылка</a><br />/n<a href=\\"https://example.com\\" target=\\"_blank\\" rel=\\"noreferrer noopener\\">Внешняя ссылка</a></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"alternate":[{"href":"en/page2.html","hreflang":"en"},{"href":"ru/page2.html","hreflang":"ru"}],"canonical":"ru/page2.html","vcsPath":"ru/page2.md"},"headings":[{"title":"хэш","href":"ru/page2.html#hesh","level":2}],"title":"Страница 2"},"router":{"pathname":"ru/page2","depth":2,"base":"../"},"lang":"ru","langs":["en","ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true}}
|
|
447
|
+
{"data":{"leading":false,"html":"<h2 id=\\"hesh\\"><a href=\\"ru/page2.html#hesh\\" class=\\"yfm-anchor yfm-clipboard-anchor\\" aria-hidden=\\"true\\"><span class=\\"visually-hidden\\" data-no-index=\\"true\\">хэш</span></a>хэш</h2>/n<p><a href=\\"ru/folder/index.html\\">Ссылка</a><br />/n<a href=\\"https://example.com\\" target=\\"_blank\\" rel=\\"noreferrer noopener\\">Внешняя ссылка</a></p>/n","meta":{"metadata":[{"name":"generator","content":"Diplodoc Platform vDIPLODOC-VERSION"}],"alternate":[{"href":"en/page2.html","hreflang":"en"},{"href":"ru/page2.html","hreflang":"ru"}],"canonical":"ru/page2.html","neuroExpert":{"type":"search"},"vcsPath":"ru/page2.md"},"headings":[{"title":"хэш","href":"ru/page2.html#hesh","level":2}],"title":"Страница 2"},"router":{"pathname":"ru/page2","depth":2,"base":"../"},"lang":"ru","langs":["en","ru"],"viewerInterface":{"toc":true,"search":true,"feedback":true},"neuroExpert":{"projectId":"77fac9c9ad9811f0997f4641db830dfd"}}
|
|
450
448
|
</script>
|
|
451
449
|
<script type="application/javascript">
|
|
452
450
|
const data = document.querySelector('script#diplodoc-state');
|
|
@@ -460,21 +458,12 @@ exports[`Neuro-expert > Neuro-expert 13`] = `
|
|
|
460
458
|
const neuroExpertScript = document.createElement('script');
|
|
461
459
|
neuroExpertScript.type = "module";
|
|
462
460
|
neuroExpertScript.src = "https://yastatic.net/s3/distribution/stardust/neuroexpert-widget/production/neuroexpert-widget.js";
|
|
463
|
-
const
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
if (widgetsDiv) {
|
|
470
|
-
widgetsDiv.appendChild(neuroExpertDiv);
|
|
471
|
-
window.initNeuroexpert({"projectId":"77fac9c9ad9811f0997f4641db830dfd","hasOutsideClick":true,"parentId":"neuro-expert-widget","customLabel":"new label"});
|
|
472
|
-
} else {
|
|
473
|
-
setTimeout(tryAppend, 50);
|
|
474
|
-
}
|
|
475
|
-
}
|
|
476
|
-
tryAppend();
|
|
477
|
-
};
|
|
461
|
+
const neuroExpertPreload = document.createElement("iframe");
|
|
462
|
+
neuroExpertPreload.src = "https://expert.yandex.ru/expert/projects/77fac9c9ad9811f0997f4641db830dfd/iframe";
|
|
463
|
+
neuroExpertPreload.loading = "eager";
|
|
464
|
+
neuroExpertPreload.style.display = "none";
|
|
465
|
+
neuroExpertPreload.setAttribute("aria-hidden", "true");
|
|
466
|
+
document.body.appendChild(neuroExpertPreload);
|
|
478
467
|
document.body.appendChild(neuroExpertScript);
|
|
479
468
|
</script>
|
|
480
469
|
</body>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Текст {% file src="_assets/test.yaml" name="Configuration File" %} потом текст
|
|
4
4
|
|
|
5
|
+
Текст {% file src="_assets/test.txt" name="Configuration File txt" %} потом текст
|
|
6
|
+
|
|
7
|
+
Текст {% file src="_assets/test.docx" name="Configuration File txt" %} потом текст
|
|
8
|
+
|
|
9
|
+
Текст {% file src="_assets/test.xlsx" name="Configuration File txt" %} потом текст
|
|
10
|
+
|
|
11
|
+
Текст {% file src="_assets/test.csv" name="Configuration File txt" %} потом текст
|
|
5
12
|
|
|
6
13
|
Текс <a href="_assets/test.yaml" download="Config">Скачать</a> потом текст
|
|
7
14
|
|
package/package.json
CHANGED
|
File without changes
|