tiro-notes 0.27.55 → 0.27.58

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/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Tiro Notes
2
2
 
3
- Open-source, fast and supercharged markdown editor to be used anywhere
3
+ Open-source, fast and extensible markdown editor to use everywhere
4
4
 
5
- ![Tiro Notes S1](https://user-images.githubusercontent.com/2981891/159969275-57e1e0a1-9b77-4e7d-b814-9367ce5830ad.jpg)
5
+ ![Tiro S2](https://user-images.githubusercontent.com/2981891/161093353-e9c2df15-ffca-4d2f-839d-ced9ced659b1.jpg)
6
6
 
7
7
  ## WHY
8
8
 
@@ -18,10 +18,49 @@ Tiro Notes focus points are :
18
18
  - 💅 **Nice**: Usability & nice user experience is key aspect of Tiro.
19
19
 
20
20
 
21
- - 📟 **Use it anywhere** : Apps for Windows, Mac, Linux. You can install and start Tiro within seconds with npx. You can install it on Android and iOS. You can use it as web server and use it with any device with a browser.
22
- - 🏋 **Extensible** : custom and extensible markdown tags like [[latex]] or [[script]] or with third party plugins (planned).
21
+ - ☁️ / 🖥️ / 💻 / 📱 **Use it anywhere** : Apps for Windows, Mac, Linux. You can install and start Tiro within seconds with npx. You can install it on Android and iOS. You can use it as web server and use it with any device with a browser.
22
+ - 🏋 **Extensible** : create custom markdown tag like [[calendar]], [[uml]] and other within seconds. Use [[latex]]. Create your own tag with [[script]] and the client api
23
+
24
+ ## MENU
25
+ * [Why](#why)
26
+ * [Usage](#usage)
27
+ + [Desktop Applications](#desktop-applications)
28
+ + [Command Line](#command-line)
29
+ * [Functionalities List](#functionalities-list)
30
+ * [Documentation](#documentation)
31
+ + [Available Custom Tags](#available-custom-tags)
32
+ + [Add scripts in your note](#add-scripts-in-your-note)
33
+ + [Create your own custom tags](#create-your-own-custom-tags)
34
+ - [1) How to create a new custom tag [[mail-address]]](#1--how-to-create-a-new-custom-tag--)
35
+ - [2) Using {{InnerTag}}](#2--using---innertag--)
36
+ - [3) Add script logic in your tag](#3--add-script-logic-in-your-tag--)
37
+ + [Client API](#client-api)
38
+ * [Faq](#faq)
39
+ + [How can I sync my notes folder on other devices?](#how-can-i-sync-my-notes-folder-on-other-devices)
40
+ + [Can I edit my notes on another application?](#can-i-edit-my-notes-on-another-application)
41
+ + [How can I access to Tiro on my device](#how-can-i-access-to-tiro-on-my-device)
42
+ + [What is the current status of Tiro Notes?](#what-is-the-current-status-of-tiro-notes)
23
43
 
24
- ## FUNCTIONALITIES
44
+ ## USAGE
45
+
46
+ ### DESKTOP APPLICATIONS
47
+
48
+ Mac/Linux/Windows Applications can be downloaded [here](https://github.com/dotgreg/tiro-notes/releases/tag/production)
49
+
50
+ ### COMMAND LINE
51
+ - Requirements : [NodeJs](https://nodejs.org/en/download/) and [RipGrep](https://github.com/BurntSushi/ripgrep)
52
+
53
+ ```
54
+ npx tiro-notes
55
+ ```
56
+
57
+ <img src="https://user-images.githubusercontent.com/2981891/159723396-b5e81dcd-a4aa-4581-9b7f-e3b62bcdef65.gif" width="600"/>
58
+
59
+ - This works with any platform/device, including unrooted Android with [Termux](https://termux.com) and possibly iOS with iSH (untested)
60
+ - ```npx tiro-notes --help``` for all available options
61
+
62
+
63
+ ## FUNCTIONALITIES LIST
25
64
  <details>
26
65
  <summary>Expand all functionalities</summary>
27
66
 
@@ -36,8 +75,8 @@ Tiro Notes focus points are :
36
75
  - 🏋 Embed videos and other web content (with iframe)
37
76
  - 🏋 create javascript applications within your note with [[script]]
38
77
  - 💱 display math formulas with [[latex]]
78
+ - 🧬 display UML and other diagrams with [[diagram]] (custom tags)
39
79
  - (🔧) 💬 Text to Speech (beta)
40
- - (🔧) 🧬 display UML and other diagrams with [[diagram]] (planned...)
41
80
  - (🔧) 📡 Server Collaborative edition (planned...)
42
81
 
43
82
  **Search**
@@ -65,39 +104,167 @@ Tiro Notes focus points are :
65
104
  - (🔧)📱 Install on iOS with iSH and NPX (to be tested...)
66
105
  </details>
67
106
 
68
- ## USAGE
69
107
 
70
- ### 1) DESKTOP APPLICATIONS
108
+ ## DOCUMENTATION
71
109
 
72
- Mac/Linux/Windows Applications can be downloaded [here](https://github.com/dotgreg/tiro-notes/releases/tag/production)
110
+ ### Available Custom Tags
111
+ - [[calendar]] a fully functional calendar that stored data on a note : [install instructions & screenshot](https://github.com/dotgreg/tiro-notes/blob/master/documentation/custom-tag-calendar.md)
112
+ - [[mermaid]] Uml, Gantt and flowcharts : [install instructions & screenshot](https://github.com/dotgreg/tiro-notes/blob/master/documentation/custom-tag-mermaid.md)
73
113
 
74
- ### 2) COMMAND LINE
75
- - Requirements : [NodeJs](https://nodejs.org/en/download/) and [RipGrep](https://github.com/BurntSushi/ripgrep)
114
+ ### Add scripts in your note
76
115
 
77
- ```
78
- npx tiro-notes
79
- ```
116
+ <details>
117
+ <summary>Expand for details</summary>
118
+ You can add javascript logic in your note with the special tag [[script]]
119
+
120
+ You need to use ```return``` to output it in the preview.
121
+
122
+ ```
123
+ .... Note content ....
124
+
125
+ [[script]]]
126
+ const stringToDisplay = `this is a hello world from javascript`
127
+ const randomNumber = Math.round(Math.random() * 1000)
128
+ return `${stringToDisplay} ${randomNumber} `
129
+ [[script]]
130
+
131
+ .... Note content ....
132
+ ```
133
+
134
+ will output something like
135
+
136
+ ```
137
+ .... Note content ....
138
+
139
+ this is a hello world from javascript 102
140
+
141
+ .... Note content ....
142
+
143
+ ```
144
+ </details>
80
145
 
81
- <img src="https://user-images.githubusercontent.com/2981891/159723396-b5e81dcd-a4aa-4581-9b7f-e3b62bcdef65.gif" width="600"/>
146
+ ### Create your own custom tags
82
147
 
83
- - This works with any platform/device, including unrooted Android with [Termux](https://termux.com) and possibly iOS with iSH (untested)
84
- - ```npx tiro-notes --help``` for all available options
148
+ <details>
149
+ <summary>Expand for details</summary>
150
+
151
+ #### 1) How to create a new custom tag [[mail-address]]
152
+ In order to install a new tag, you need to create a new note in ```/.tiro/tags/``` folder. (create the /tags directory if doesn't exists).
153
+
154
+ The content of that note will then be placed instead of the tag.
155
+
156
+ So in order to create a custom tag [[mail-address]], you will need to create ```/.tiro/tags/mail-address.md```
157
+
158
+ So with ```/.tiro/tags/mail-address.md``` content being :
159
+ ```
160
+ 10 Downing Street
161
+ City of Westminster
162
+ London, SW1
163
+ ```
164
+
165
+ And your note content being
166
+
167
+ ```
168
+ .... Note content ....
169
+
170
+ [[mail-address]] [[mail-address]]
171
+
172
+ .... Note content ....
173
+
174
+ ```
175
+
176
+ The result will give
177
+
178
+ ```
179
+ .... Note content ....
180
+
181
+ 10 Downing Street
182
+ City of Westminster
183
+ London, SW1
184
+
185
+ .... Note content ....
186
+
187
+ ```
188
+
189
+
190
+ #### 2) Using {{InnerTag}}
191
+ The content inside the custom tags can be fetched with the special tag ```{{innerTag}}```
192
+
193
+ So with ```/.tiro/tags/mail-address.md``` content being :
194
+ ```
195
+ 10 Downing Street
196
+ City of Westminster
197
+ London, SW1
198
+ {{innerTag}}
199
+ ```
200
+
201
+ Calling ```[[mail-address]] John Foo [[mail-address]]``` in any note will be replaced by
202
+
203
+ ```
204
+ 10 Downing Street
205
+ City of Westminster
206
+ London, SW1
207
+ John Foo
208
+ ```
209
+
210
+ ### 3) Add script logic in your tag
211
+
212
+ You can add javascript to your custom tag with the special tag [[script]]
213
+
214
+ If we have ```/.tiro/tags/square-number.md``` with the following content :
215
+ ```
216
+ The multiplied result is :
217
+ [[script]]]
218
+ const numberToSquare = {{innerTag}}
219
+ return `${numberToSquare * numberToSquare}`
220
+ [[script]]
221
+ ```
222
+
223
+ Using ```[[square-number]] 4 [[square-number]]``` will return ```The multiplied result is : 16```
224
+
225
+
226
+ </details>
227
+
228
+
229
+ ### Client API (Beta)
230
+ <details>
231
+ <summary>Expand for details</summary>
232
+
233
+
234
+ Tiro Notes provides a Client API accessible using the developer console of your browser :
235
+ ![Screenshot 2022-03-31 at 18 39 22](https://user-images.githubusercontent.com/2981891/161106559-b27890d1-fca4-4e66-a6ff-0bdf38f679b3.jpg)
236
+
237
+ typing ``` window.tiroCli ``` will give you the updated list of available functions. Each function has a description ```window.tiroCli.FUNCTION.description``` and can be called like that ```window.tiroCli.FUNCTION.f()```
238
+
239
+ The Tiro Cli allows you to :
240
+ - fetch a note content : ```window.tiroCli.clientApiGetFileContent```
241
+ - modify a note content : ```window.tiroCli.clientApiSetFileContent```
242
+ - Load an external javascript file : ```window.tiroCli.loadScripts(['https://', 'https://', ...], function () => {})```
243
+ - Show the current note content : ```window.tiroCli.fileContent```
244
+ - Trigger a search in the interface : ```window.tiroCli.triggerSearch```
245
+ - Set the Dual Editor view type temporarily : ```window.tiroCli.setTempViewType ("both", "editor", "preview")```
246
+
247
+ /!\ this API and CLI structure is meant to change in term of structure, make sure to check window.tiroCli when upgrading to a new version /!\
248
+
249
+ </details>
85
250
 
86
251
 
87
- # FAQ
88
252
 
89
- ## How can I sync my notes folder on other devices?
253
+ ## FAQ
254
+
255
+ ### How can I sync my notes folder on other devices?
90
256
  You can use any sync solution like dropbox, google drive, resilio sync, syncthings etc...
91
257
 
92
- ## Can I edit my notes on another application?
258
+ ### Can I edit my notes on another application?
93
259
  Yes, all the datas Tiro uses is coming from markdown notes. So you can edit your notes in other applications without any problem.
94
260
 
95
- ## How can I access to Tiro on my device
96
- 1) Device where tiro is installed : http://localhost:3023
97
- 2) If on same local network: http://192.168.xx.xx:3023 where that ip is the ip of the device where tiro is installed
261
+ ### How can I access to Tiro on my device from anywhere
262
+ 1) Device where tiro is installed : http://localhost:3023
263
+ 2) If on same Wifi/local network: http://192.168.xx.xx:3023 where that ip is the ip of the device where tiro is installed
98
264
  3) Not on same network : Tiro works great using SSH tunneling, AutoSSH or similar (free ssh tunnels solutions exists like https://opentunnel.net/). Npx tiro-notes also includes a --tunnel option for easy tunneling.
265
+ 4) On the cloud: You can install Tiro Notes on your server and access it from anywhere.
99
266
 
100
- ## What is the current status of Tiro Notes?
267
+ ### What is the current status of Tiro Notes?
101
268
  I have been developing it for over a year and using it as my daily note app for over 6 months now, its core functionalities seems stable enough for my use so far.
102
269
  I haven't been loosing any data so far, and there is always the history note functionality in that case.
103
270
 
@@ -106,7 +273,3 @@ However, I consider that application still in alpha phase, it still needs a lot
106
273
  So use it at your own risk, and always with data you can afford to lose.
107
274
 
108
275
  I am not responsible of any data loss!
109
-
110
- # ADVANCED
111
- ## Applications within Tiro with [[script]] and window.tiroCli
112
- - Add a calendar app within Tiro : [instructions](https://gist.github.com/dotgreg/cb758ff85be8f9afb9c7854be494c945#comments)
@@ -2,10 +2,10 @@
2
2
  "files": {
3
3
  "static/js/0.ea8a0557.chunk.js": "/static/js/0.ea8a0557.chunk.js",
4
4
  "static/js/1.5165368f.chunk.js": "/static/js/1.5165368f.chunk.js",
5
- "main.js": "/static/js/main.94eb9fd3.chunk.js",
5
+ "main.js": "/static/js/main.0ba07f45.chunk.js",
6
6
  "runtime-main.js": "/static/js/runtime-main.85e6c3a1.js",
7
7
  "static/css/4.f758ca10.chunk.css": "/static/css/4.f758ca10.chunk.css",
8
- "static/js/4.8973d27e.chunk.js": "/static/js/4.8973d27e.chunk.js",
8
+ "static/js/4.76ccc8f5.chunk.js": "/static/js/4.76ccc8f5.chunk.js",
9
9
  "static/js/5.5a164537.chunk.js": "/static/js/5.5a164537.chunk.js",
10
10
  "static/js/6.697e1b7d.chunk.js": "/static/js/6.697e1b7d.chunk.js",
11
11
  "static/js/7.14d55754.chunk.js": "/static/js/7.14d55754.chunk.js",
@@ -80,7 +80,7 @@
80
80
  "static/js/76.9c28f408.chunk.js": "/static/js/76.9c28f408.chunk.js",
81
81
  "static/js/77.da25a9dd.chunk.js": "/static/js/77.da25a9dd.chunk.js",
82
82
  "index.html": "/index.html",
83
- "static/js/4.8973d27e.chunk.js.LICENSE.txt": "/static/js/4.8973d27e.chunk.js.LICENSE.txt",
83
+ "static/js/4.76ccc8f5.chunk.js.LICENSE.txt": "/static/js/4.76ccc8f5.chunk.js.LICENSE.txt",
84
84
  "static/js/70.c94c4057.chunk.js.LICENSE.txt": "/static/js/70.c94c4057.chunk.js.LICENSE.txt",
85
85
  "static/media/codicon.css": "/static/media/codicon.0e0f4555.ttf",
86
86
  "static/media/compact-disc-solid.55b6e50c.svg": "/static/media/compact-disc-solid.55b6e50c.svg",
@@ -103,7 +103,7 @@
103
103
  "entrypoints": [
104
104
  "static/js/runtime-main.85e6c3a1.js",
105
105
  "static/css/4.f758ca10.chunk.css",
106
- "static/js/4.8973d27e.chunk.js",
107
- "static/js/main.94eb9fd3.chunk.js"
106
+ "static/js/4.76ccc8f5.chunk.js",
107
+ "static/js/main.0ba07f45.chunk.js"
108
108
  ]
109
109
  }
package/client/index.html CHANGED
@@ -1 +1 @@
1
- <!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Tiro</title><link href="/static/css/4.f758ca10.chunk.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script>!function(e){function t(t){for(var n,a,f=t[0],d=t[1],u=t[2],l=0,b=[];l<f.length;l++)a=f[l],Object.prototype.hasOwnProperty.call(c,a)&&c[a]&&b.push(c[a][0]),c[a]=0;for(n in d)Object.prototype.hasOwnProperty.call(d,n)&&(e[n]=d[n]);for(i&&i(t);b.length;)b.shift()();return o.push.apply(o,u||[]),r()}function r(){for(var e,t=0;t<o.length;t++){for(var r=o[t],n=!0,f=1;f<r.length;f++){var d=r[f];0!==c[d]&&(n=!1)}n&&(o.splice(t--,1),e=a(a.s=r[0]))}return e}var n={},c={3:0},o=[];function a(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,a),r.l=!0,r.exports}a.e=function(e){var t=[],r=c[e];if(0!==r)if(r)t.push(r[2]);else{var n=new Promise((function(t,n){r=c[e]=[t,n]}));t.push(r[2]=n);var o,f=document.createElement("script");f.charset="utf-8",f.timeout=120,a.nc&&f.setAttribute("nonce",a.nc),f.src=function(e){return a.p+"static/js/"+({}[e]||e)+"."+{0:"ea8a0557",1:"5165368f",5:"5a164537",6:"697e1b7d",7:"14d55754",8:"15f8b019",9:"d6f9119c",10:"0cad3458",11:"2b0ce64e",12:"92514d67",13:"69e5059f",14:"117692f4",15:"dea3d779",16:"e8e8033d",17:"62bb08b2",18:"adb3422a",19:"e3714478",20:"62600c4c",21:"f89ecbc5",22:"89747807",23:"58fe2d2d",24:"571a9e16",25:"4d44c618",26:"362ceb27",27:"ca2e80c3",28:"7e438b2a",29:"5027ee80",30:"3e109afb",31:"a097b7ac",32:"0a2041de",33:"a2154eb9",34:"f77c022a",35:"151dffa4",36:"8349f6d8",37:"c1cd83f1",38:"00342a1f",39:"bd59d75f",40:"4c05ccf2",41:"5162463b",42:"911e59b0",43:"013161fd",44:"d42d9495",45:"6e3355b4",46:"92cec6d7",47:"c11e93b5",48:"161a44a2",49:"37b10bc2",50:"2f298839",51:"4f5ddb55",52:"68b1718e",53:"0ce22e26",54:"869bdc2f",55:"794936d9",56:"a5aae177",57:"73abd3b1",58:"b2871647",59:"7124c8a3",60:"d4812f0c",61:"242cd07c",62:"d8cf9e3d",63:"c1fcda28",64:"46d04682",65:"ae667b7e",66:"e1b5e96b",67:"ad5ce699",68:"32d99a48",69:"d53139ee",70:"c94c4057",71:"fe4cebc2",72:"4d2f6ab7",73:"2611f005",74:"c22413f1",75:"60443035",76:"9c28f408",77:"da25a9dd"}[e]+".chunk.js"}(e);var d=new Error;o=function(t){f.onerror=f.onload=null,clearTimeout(u);var r=c[e];if(0!==r){if(r){var n=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;d.message="Loading chunk "+e+" failed.\n("+n+": "+o+")",d.name="ChunkLoadError",d.type=n,d.request=o,r[1](d)}c[e]=void 0}};var u=setTimeout((function(){o({type:"timeout",target:f})}),12e4);f.onerror=f.onload=o,document.head.appendChild(f)}return Promise.all(t)},a.m=e,a.c=n,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(r,n,function(t){return e[t]}.bind(null,n));return r},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="/",a.oe=function(e){throw console.error(e),e};var f=this["webpackJsonptiro-notes-client"]=this["webpackJsonptiro-notes-client"]||[],d=f.push.bind(f);f.push=t,f=f.slice();for(var u=0;u<f.length;u++)t(f[u]);var i=d;r()}([])</script><script src="/static/js/4.8973d27e.chunk.js"></script><script src="/static/js/main.94eb9fd3.chunk.js"></script></body></html>
1
+ <!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Tiro</title><link href="/static/css/4.f758ca10.chunk.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script>!function(e){function t(t){for(var n,a,f=t[0],d=t[1],u=t[2],l=0,b=[];l<f.length;l++)a=f[l],Object.prototype.hasOwnProperty.call(c,a)&&c[a]&&b.push(c[a][0]),c[a]=0;for(n in d)Object.prototype.hasOwnProperty.call(d,n)&&(e[n]=d[n]);for(i&&i(t);b.length;)b.shift()();return o.push.apply(o,u||[]),r()}function r(){for(var e,t=0;t<o.length;t++){for(var r=o[t],n=!0,f=1;f<r.length;f++){var d=r[f];0!==c[d]&&(n=!1)}n&&(o.splice(t--,1),e=a(a.s=r[0]))}return e}var n={},c={3:0},o=[];function a(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,a),r.l=!0,r.exports}a.e=function(e){var t=[],r=c[e];if(0!==r)if(r)t.push(r[2]);else{var n=new Promise((function(t,n){r=c[e]=[t,n]}));t.push(r[2]=n);var o,f=document.createElement("script");f.charset="utf-8",f.timeout=120,a.nc&&f.setAttribute("nonce",a.nc),f.src=function(e){return a.p+"static/js/"+({}[e]||e)+"."+{0:"ea8a0557",1:"5165368f",5:"5a164537",6:"697e1b7d",7:"14d55754",8:"15f8b019",9:"d6f9119c",10:"0cad3458",11:"2b0ce64e",12:"92514d67",13:"69e5059f",14:"117692f4",15:"dea3d779",16:"e8e8033d",17:"62bb08b2",18:"adb3422a",19:"e3714478",20:"62600c4c",21:"f89ecbc5",22:"89747807",23:"58fe2d2d",24:"571a9e16",25:"4d44c618",26:"362ceb27",27:"ca2e80c3",28:"7e438b2a",29:"5027ee80",30:"3e109afb",31:"a097b7ac",32:"0a2041de",33:"a2154eb9",34:"f77c022a",35:"151dffa4",36:"8349f6d8",37:"c1cd83f1",38:"00342a1f",39:"bd59d75f",40:"4c05ccf2",41:"5162463b",42:"911e59b0",43:"013161fd",44:"d42d9495",45:"6e3355b4",46:"92cec6d7",47:"c11e93b5",48:"161a44a2",49:"37b10bc2",50:"2f298839",51:"4f5ddb55",52:"68b1718e",53:"0ce22e26",54:"869bdc2f",55:"794936d9",56:"a5aae177",57:"73abd3b1",58:"b2871647",59:"7124c8a3",60:"d4812f0c",61:"242cd07c",62:"d8cf9e3d",63:"c1fcda28",64:"46d04682",65:"ae667b7e",66:"e1b5e96b",67:"ad5ce699",68:"32d99a48",69:"d53139ee",70:"c94c4057",71:"fe4cebc2",72:"4d2f6ab7",73:"2611f005",74:"c22413f1",75:"60443035",76:"9c28f408",77:"da25a9dd"}[e]+".chunk.js"}(e);var d=new Error;o=function(t){f.onerror=f.onload=null,clearTimeout(u);var r=c[e];if(0!==r){if(r){var n=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;d.message="Loading chunk "+e+" failed.\n("+n+": "+o+")",d.name="ChunkLoadError",d.type=n,d.request=o,r[1](d)}c[e]=void 0}};var u=setTimeout((function(){o({type:"timeout",target:f})}),12e4);f.onerror=f.onload=o,document.head.appendChild(f)}return Promise.all(t)},a.m=e,a.c=n,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(r,n,function(t){return e[t]}.bind(null,n));return r},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="/",a.oe=function(e){throw console.error(e),e};var f=this["webpackJsonptiro-notes-client"]=this["webpackJsonptiro-notes-client"]||[],d=f.push.bind(f);f.push=t,f=f.slice();for(var u=0;u<f.length;u++)t(f[u]);var i=d;r()}([])</script><script src="/static/js/4.76ccc8f5.chunk.js"></script><script src="/static/js/main.0ba07f45.chunk.js"></script></body></html>