File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,10 @@ using TranscodingStreams
3
3
4
4
makedocs (
5
5
# Documenter.jl doesn't support including HTML elements.
6
- # format=:html,
6
+ format= :html ,
7
7
sitename= " TranscodingStreams.jl" ,
8
- modules= [TranscodingStreams])
8
+ modules= [TranscodingStreams],
9
+ assets= [" assets/custom.css" ])
9
10
10
11
deploydocs (
11
12
repo= " github.com/bicycle1885/TranscodingStreams.jl.git" ,
Original file line number Diff line number Diff line change
1
+ h1 {
2
+ font-size : 2.0em ;
3
+ }
4
+
5
+ h2 {
6
+ font-size : 1.8em ;
7
+ margin-top : 40px ;
8
+ border-bottom : 1px solid # eeeeee ;
9
+ }
10
+
11
+ table {
12
+ width : 125% ;
13
+ font-size : 13px ;
14
+ }
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ like a data stream that incrementally decompresses data from the file.
19
19
20
20
Codecs are defined in other packages listed below:
21
21
22
+ ``` @raw html
22
23
<table>
23
24
<tr>
24
25
<th>Package</th>
@@ -103,6 +104,7 @@ Codecs are defined in other packages listed below:
103
104
<td>Decompress data in zstd (.zst) format.</td>
104
105
</tr>
105
106
</table>
107
+ ```
106
108
107
109
Install packages you need by calling ` Pkg.add(<package name>) ` in a Julia
108
110
session. For example, if you want to read gzip-compressed files, call
@@ -237,6 +239,11 @@ transcode(codec::Codec, data::Vector{UInt8})
237
239
TranscodingStreams.TOKEN_END
238
240
```
239
241
242
+ ``` @docs
243
+ TranscodingStreams.CodecIdentity.Identity
244
+ TranscodingStreams.CodecIdentity.IdentityStream
245
+ ```
246
+
240
247
241
248
Defining a new codec
242
249
--------------------
You can’t perform that action at this time.
0 commit comments