-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.ld
57 lines (54 loc) · 1.89 KB
/
config.ld
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
-- See https://stevedonovan.github.io/ldoc/manual/doc.md.html
file = {'jls', exclude = {
'jls/io/streams',
'jls/net/http/filter',
'jls/net/http/handler',
'jls/net/http/Hpack.lua',
'jls/util/CoroutineScheduler.lua',
'jls/util/Struct.lua',
}}
project = "luajls"
title = "Lua JLS 0.8"
description = "luajls documentation"
full_description = [[
The luajls library provides abstraction interfaces for general-purpose scripting.
## Contents
* Introduction
* @{manual.md.Audience|Audience}
* @{manual.md.Overview|Overview}
* @{manual.md.General_Considerations|General Considerations}
* Basic Concepts
* @{manual.md.Namespace_and_Modules|Namespace and Modules}
* @{manual.md.Object_Oriented_Programming|Object Oriented Programming}
* @{manual.md.Exception|Exception}
* @{manual.md.Modules_and_Resources|Modules and Resources}
* @{manual.md.Logging|Logging}
* @{manual.md.Concurrent_Programming|Concurrent Programming}
* Data Storage and Transformation
* @{manual.md.File_System|File System}
* @{manual.md.Data_Transformation|Data Transformation}
* Network Programming
* @{manual.md.Network_Socket|Network Socket}
* @{manual.md.Hypertext_Transfer_Protocol__HTTP_|Hypertext Transfer Protocol (HTTP)}
* Process and Thread
* @{manual.md.Process|Process}
* @{manual.md.Thread|Thread}
* @{manual.md.Inter_Process_Communication|Inter-Process Communication}
* Utilities
* @{manual.md.Basic_Classes|Basic Classes}
* @{manual.md.Data_Exchange_Formats|Data Exchange Formats}
* @{manual.md.User_Interface|User Interface}
]]
--no_return_or_parms = true
--no_summary = true
--no_space_before_args = true
--sort = true
style = "!fixed"
--no_lua_ref = true
topics = "doc_topics"
package = "jls"
format = "markdown"
custom_tags = {
{'diagnostic', title=''},
{'experimental', title='Experimental Section'},
}