Weave.jl/src/types.jl

74 lines
1.5 KiB
Julia
Raw Normal View History

2020-05-09 17:01:49 +02:00
# TODO: concreate typing
2017-12-31 13:02:28 +01:00
abstract type WeaveChunk end
abstract type Inline end
2020-05-31 09:49:20 +02:00
abstract type WeaveFormat end
2016-12-26 19:06:03 +01:00
2017-12-31 13:02:28 +01:00
mutable struct WeaveDoc
2016-04-11 17:40:18 +02:00
source::AbstractString
basename::AbstractString
path::AbstractString
2020-05-09 17:01:49 +02:00
chunks::Vector{WeaveChunk}
2016-04-11 17:40:18 +02:00
cwd::AbstractString
2020-05-08 16:39:17 +02:00
format::Any
doctype::String
header_script::String
header::Dict
chunk_defaults::Dict{Symbol,Any}
end
2017-12-31 13:02:28 +01:00
struct ChunkOutput
2016-04-11 17:40:18 +02:00
code::AbstractString
stdout::AbstractString
displayed::AbstractString
rich_output::AbstractString
2020-05-09 17:01:49 +02:00
figures::Vector{AbstractString}
end
2017-12-31 13:02:28 +01:00
mutable struct CodeChunk <: WeaveChunk
2020-05-24 17:29:02 +02:00
content::String
number::Int
start_line::Int
2020-05-24 17:29:02 +02:00
optionstring::String
2020-05-08 16:39:17 +02:00
options::Dict{Symbol,Any}
2016-04-11 17:40:18 +02:00
output::AbstractString
rich_output::AbstractString
2020-05-24 17:29:02 +02:00
figures::Vector{String}
2020-05-09 17:01:49 +02:00
result::Vector{ChunkOutput}
2020-05-24 17:29:02 +02:00
end
function CodeChunk(content, number, start_line, optionstring, options)
return CodeChunk(
string(rstrip(content), '\n'), # normalize end of chunk)
number,
start_line,
optionstring,
options,
"",
"",
AbstractString[],
2020-05-24 17:29:02 +02:00
ChunkOutput[]
)
end
2017-12-31 13:02:28 +01:00
mutable struct DocChunk <: WeaveChunk
content::Vector{Inline}
number::Int
start_line::Int
2016-12-26 19:06:03 +01:00
end
struct InlineText <: Inline
content::String
2016-12-27 20:43:13 +01:00
number::Int
end
2017-12-31 13:02:28 +01:00
mutable struct InlineCode <: Inline
content::String
2016-12-27 20:43:13 +01:00
number::Int
ctype::Symbol
output::String
rich_output::String
figures::Vector{String}
2016-12-26 19:06:03 +01:00
end
InlineCode(content, number, ctype) = InlineCode(content, number, ctype, "", "", String[])