Skip to content

Commit 6ef48bb

Browse files
committed
docs: remove all <br>
1 parent e9ee1f3 commit 6ef48bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+991
-999
lines changed

docs/apis/DataAPI/ConfigFile.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Therefore, the content and format of the configuration file generally need to be
1313
LLSE provides the ConfigFile configuration file interface to accomplish this task.
1414
Of course, you can also manually read and write files to assist in the operation of related configuration files.
1515

16-
<br>
16+
1717

1818
### Description: Selection of Configuration File Type
1919

@@ -24,7 +24,7 @@ The choice of configuration file format will affect the type of configuration da
2424

2525
Please make your choice as needed.
2626

27-
<br>
27+
2828

2929
### 📰 JSON Format Configuration File
3030

@@ -47,7 +47,7 @@ Please make your choice as needed.
4747

4848
We recommend that you create a directory named `BDS_Root_Directory/plugins/plugin_name/` with a config file named `config.json` to keep the configuration of each plugin uniform.
4949

50-
<br>
50+
5151

5252
For a JSON profile object `conf`, you have these read and write interfaces available.
5353

@@ -67,7 +67,7 @@ Here is an easy way to initialize the configuration file, avoiding the trouble o
6767

6868
If the accessed configuration item does not exist, then the engine will automatically create the item `init` in the configuration file and write the given default value.
6969
If the accessed configuration item `init` already exists, the engine will read and return the existing value in the configuration file.
70-
<br>
70+
7171

7272
#### Write Configuration Item
7373

@@ -85,7 +85,7 @@ If the accessed configuration item `init` already exists, the engine will read a
8585

8686
- Return value type: `Boolean`
8787

88-
<br>
88+
8989

9090
#### Read Configuration Items
9191

@@ -100,7 +100,7 @@ If the accessed configuration item `init` already exists, the engine will read a
100100
- Return value: The data of the specified configuration item.
101101
- Return value type: `Any type`, subject to the specific type of data stored.
102102

103-
<br>
103+
104104

105105
#### Delete Configuration Item
106106

@@ -114,7 +114,7 @@ If the accessed configuration item `init` already exists, the engine will read a
114114

115115
If you don't need this configuration item, in order to avoid confusion when others modify the configuration file, you can choose to delete it.
116116

117-
<br>
117+
118118

119119
### 📄 Ini Format Configuration File
120120

@@ -137,7 +137,7 @@ If you don't need this configuration item, in order to avoid confusion when othe
137137

138138
We recommend that you create a directory named `BDS_Root_Directory/plugins/plugin_name/` with a config file named `config.json` to keep the configuration of each plugin uniform.
139139

140-
<br>
140+
141141

142142
For an ini profile object `conf`, you have these read and write interfaces available:
143143

@@ -161,7 +161,7 @@ Here is an easy way to initialize the configuration file, avoiding the trouble o
161161
If the accessed configuration item does not exist, then the engine will automatically create the item `init` in the configuration file and write the given default value.
162162
If the accessed configuration item `init` already exists, the engine will read and return the existing value in the configuration file.
163163

164-
<br>
164+
165165

166166
#### Write Configuration Item
167167

@@ -182,7 +182,7 @@ If the accessed configuration item `init` already exists, the engine will read a
182182

183183
If the configuration item does not exist, the interface will be created automatically.
184184

185-
<br>
185+
186186

187187
#### Read Configuration Items
188188

@@ -202,7 +202,7 @@ Read boolean `conf.getBool(section,name[,default])`
202202
- Return value: The data of the specified configuration item.
203203
- Return value type: `String`/ `Integer`/ `Float`/ `Boolean`
204204

205-
<br>
205+
206206

207207
#### Delete Configuration Item
208208

@@ -218,7 +218,7 @@ Read boolean `conf.getBool(section,name[,default])`
218218

219219
If you don't need this configuration item, in order to avoid confusion when others modify the configuration file, you can choose to delete it.
220220

221-
<br>
221+
222222

223223
### 💼 Other Common Interface Functions
224224

@@ -232,7 +232,7 @@ For a profile object `conf`, you can use these generic interfaces for auxiliary
232232

233233
For performance reasons, the configuration file interface caches read operations, each read operation is read from direct memory, and writes are written directly to disk files. Considering that the configuration file may be modified by the user, after you confirm that the user has modified the configuration file, you need to use this function to refresh the memory cache data of the configuration file.
234234

235-
<br>
235+
236236

237237
#### Close Config File
238238

@@ -242,7 +242,7 @@ For performance reasons, the configuration file interface caches read operations
242242

243243
After the profile is closed, do not continue to use it!
244244

245-
<br>
245+
246246

247247
#### Get Configuration File Path
248248

@@ -251,7 +251,7 @@ After the profile is closed, do not continue to use it!
251251
- Return value: The file path of the current configuration file.
252252
- Return value type: `String`
253253

254-
<br>
254+
255255

256256
#### Read the Content of the Entire Configuration File
257257

@@ -260,7 +260,7 @@ After the profile is closed, do not continue to use it!
260260
- Return value: All contents of the current configuration file.
261261
- Return value type: `String`
262262

263-
<br>
263+
264264

265265
#### Write the Contents of the Entire Configuration File
266266

@@ -272,4 +272,3 @@ After the profile is closed, do not continue to use it!
272272
- Return value: Whether the write is successful.
273273
- Return value type: `Boolean`
274274

275-
<br>

docs/apis/DataAPI/ConfigFile.zh.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
脚本引擎提供 ConfigFile 配置文件接口来完成这个任务。
1414
当然,你也可以手动读写文件来协助相关配置文件的操作。
1515

16-
<br>
16+
1717

1818
### 说明:配置文件类型的选择
1919

@@ -24,7 +24,7 @@
2424

2525
请按需做出选择。
2626

27-
<br>
27+
2828

2929
### 📰 JSON 格式配置文件
3030

@@ -47,7 +47,7 @@
4747

4848
我们建议你在 `BDS根目录/plugins/插件名字/` 目录下建立名为`config.json`的配置文件,以保持各插件的配置统一
4949

50-
<br>
50+
5151

5252
对于一个 JSON 配置文件对象`conf`,你有这些读写接口可用
5353

@@ -68,7 +68,7 @@
6868
如果`init`访问的配置项不存在,那么引擎将在配置文件中自动创建此项,并写入给出的默认值
6969
如果`init`访问的配置项已经存在,引擎将读取并返回配置文件中已有的值
7070

71-
<br>
71+
7272

7373
#### 写入配置项
7474

@@ -86,7 +86,7 @@
8686

8787
- 返回值类型:`Boolean`
8888

89-
<br>
89+
9090

9191
#### 读取配置项
9292

@@ -101,7 +101,7 @@
101101
- 返回值:指定配置项的数据
102102
- 返回值类型:`任意类型`,以具体储存的数据类型为准
103103

104-
<br>
104+
105105

106106
#### 删除配置项
107107

@@ -115,7 +115,7 @@
115115

116116
如果这个配置项你不需要了,为了避免在他人修改配置文件时引起迷惑,你可以选择将它删除
117117

118-
<br>
118+
119119

120120
### 📄 Ini 格式配置文件
121121

@@ -138,7 +138,7 @@
138138

139139
我们建议你在 `BDS根目录/plugins/插件名字/` 目录下建立名为`config.ini`的配置文件,以保持各插件的配置统一
140140

141-
<br>
141+
142142

143143
对于一个 Ini 配置文件对象`conf`,你有这些读写接口可用
144144

@@ -162,7 +162,7 @@
162162
如果`init`访问的配置项不存在,那么引擎将在配置文件中自动创建此项,并写入给出的默认值
163163
如果`init`访问的配置项已经存在,引擎将读取并返回配置文件中已有的值
164164

165-
<br>
165+
166166

167167
#### 写入配置项
168168

@@ -183,7 +183,7 @@
183183

184184
如果配置项不存在,接口会自动创建
185185

186-
<br>
186+
187187

188188
#### 读取配置项
189189

@@ -203,7 +203,7 @@
203203
- 返回值:指定配置项的数据
204204
- 返回值类型:`String`/ `Integer`/ `Float`/ `Boolean`
205205

206-
<br>
206+
207207

208208
#### 删除配置项
209209

@@ -219,7 +219,7 @@
219219

220220
如果这个配置项你不需要了,为了避免在他人修改配置文件时引起迷惑,你可以选择将它删除
221221

222-
<br>
222+
223223

224224
### 💼 其他的通用接口函数
225225

@@ -233,7 +233,7 @@
233233

234234
为了性能考虑,配置文件接口对读操作进行缓存,每次读取操作都从直接内存中读取,而写入才会直接写入磁盘文件。考虑到配置文件可能被用户修改,当你确认用户已经修改配置文件之后,需要使用此函数刷新配置文件的内存缓存数据。
235235

236-
<br>
236+
237237

238238
#### 关闭配置文件
239239

@@ -243,7 +243,7 @@
243243

244244
配置文件关闭之后,请勿继续使用!
245245

246-
<br>
246+
247247

248248
#### 获取配置文件路径
249249

@@ -252,7 +252,7 @@
252252
- 返回值:当前配置文件的文件路径
253253
- 返回值类型:`String`
254254

255-
<br>
255+
256256

257257
#### 读取整个配置文件的内容
258258

@@ -261,7 +261,7 @@
261261
- 返回值:当前配置文件的所有内容
262262
- 返回值类型:`String`
263263

264-
<br>
264+
265265

266266
#### 写入整个配置文件的内容
267267

@@ -273,4 +273,3 @@
273273
- 返回值:是否写入成功
274274
- 返回值类型:`Boolean`
275275

276-
<br>

docs/apis/DataAPI/DataBase.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Unlike configuration files, databases generally have no readability requirements
55
LLSE provides a consolidated database interface to accomplish this task.
66
In terms of specific implementation, the engine provides two different database formats: NoSQL database in key-value pair format, and SQL database in tabular format. You can use either as needed.
77

8-
<br>
8+
99

1010
### 🔑 Key-Value NoSQL Database
1111

@@ -33,7 +33,7 @@ When the given directory does not exist, it will try to automatically create the
3333
After successfully opening the database, you can use the following interfaces to perform related operations.
3434
For a database object `db`, with the following functions:
3535

36-
<br>
36+
3737

3838
#### Write Data Item
3939

@@ -49,7 +49,7 @@ For a database object `db`, with the following functions:
4949
- Return value: Whether the write is successful.
5050
- Return value type: `Boolean`
5151

52-
<br>
52+
5353

5454
#### Read Data Item
5555

@@ -62,7 +62,7 @@ For a database object `db`, with the following functions:
6262
- Return value type: `Any type`, depending on the specific type of data stored.
6363
- If the return value is `Null` it means that the data does not exist.
6464

65-
<br>
65+
6666

6767
#### Delete Data Item
6868

@@ -74,7 +74,7 @@ For a database object `db`, with the following functions:
7474
- Return value: Whether the deletion was successfu.
7575
- Return value type: `Boolean`
7676

77-
<br>
77+
7878

7979
#### Get All Data Item Names
8080

@@ -83,7 +83,7 @@ For a database object `db`, with the following functions:
8383
- Return value: An array of all data item names.
8484
- Return value type: `Array`
8585

86-
<br>
86+
8787

8888
#### Close the Database
8989

@@ -94,12 +94,12 @@ For a database object `db`, with the following functions:
9494

9595
After the database is closed, do not continue to use it!
9696

97-
<br>
97+
9898

9999
------
100100

101101
### 📋 SQL Database
102102

103103
SQL databases are suitable for processing large amounts of relational data using SQL statements. The bottom layer of the interface is implemented using a cross-database operation framework, which can connect to most of the commonly used SQL databases in the market.
104104

105-
<br>
105+

0 commit comments

Comments
 (0)