-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathfavourites.html
119 lines (96 loc) · 2.6 KB
/
favourites.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at https://mozilla.org/MPL/2.0/
*
* Copyright (C) 2013-2021, Peter Johnson (gravatar.com/delphidabbler).
*
* CodeSnip File Format Documentation: Favourites Files
-->
<html xmlns="https://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; UTF-8" />
<title>
CodeSnip File Format Documentation - Favourites Files
</title>
<link
rel="stylesheet"
type="text/css"
media="screen"
href="main.css"
/>
</head>
<body>
<div class="title">
<div>
DelphiDabbler CodeSnip
</div>
<div class="subtitle">
File Format Documentation
</div>
</div>
<h1>
Favourites Files
</h1>
<h2>
Introduction
</h2>
<p>
CodeSnip uses this file format when it saves the current user's favourite
snippets to disk. The files use a custom format.
</p>
<h2>
Encoding
</h2>
<p>
This is a simple plain text file format encoded as UTF-8 with byte order mark.
</p>
<h2>
File Format
</h2>
<p>
The file is introduced by a header line, which must occupy the first line.
This line must be:
</p>
<pre class="indent">► CodeSnip Favourites v1 ◄</pre>
<p>
Immediately following the header line comes a list of information about the
user's favourite snippets. Information about each favourite occupies a single
line. The information comprises three fields, separated by TAB characters. The
fields are:
</p>
<ol>
<li>
Snippet name as a UTF-8 string.
</li>
<li>
A flag indicating whether the snippet is user defined or not. The text
"True" indicates a user defined snippet and "False"
signifies a snippet from the main database.
</li>
<li>
The date and time the snippet was last accessed. The date information is
formatted according to the current locale.
</li>
</ol>
<p>
Lines are separated by a CR / LF pair.
</p>
<p>
If there are no favourites then the file contains only the header line.
</p>
<p>
Blank lines are permitted anywhere except before the header line. Such lines
are ingored.
</p>
<p class="pullout">
<strong>NOTE:</strong>
The ► and ◄ characters were chosen for the header line because they encode in
a unique way in UTF-8 – ANSI files will not encode them correctly. This
provides a second check for the correct file format in addition to the byte
order mark.
</p>
</body>
</html>