fix incorrect folder name for julia-0.6.x
Former-commit-id: ef2c7401e0876f22d2f7762d182cfbcd5a7d9c70
This commit is contained in:
66
julia-0.6.3/share/julia/base/markdown/GitHub/GitHub.jl
Normal file
66
julia-0.6.3/share/julia/base/markdown/GitHub/GitHub.jl
Normal file
@@ -0,0 +1,66 @@
|
||||
# This file is a part of Julia. License is MIT: https://julialang.org/license
|
||||
|
||||
include("table.jl")
|
||||
|
||||
@breaking true ->
|
||||
function fencedcode(stream::IO, block::MD)
|
||||
withstream(stream) do
|
||||
startswith(stream, "~~~", padding = true) || startswith(stream, "```", padding = true) || return false
|
||||
skip(stream, -1)
|
||||
ch = read(stream, Char)
|
||||
trailing = strip(readline(stream))
|
||||
flavor = lstrip(trailing, ch)
|
||||
n = 3 + length(trailing) - length(flavor)
|
||||
|
||||
# inline code block
|
||||
ch in flavor && return false
|
||||
|
||||
buffer = IOBuffer()
|
||||
while !eof(stream)
|
||||
line_start = position(stream)
|
||||
if startswith(stream, string(ch) ^ n)
|
||||
if !startswith(stream, string(ch))
|
||||
if flavor == "math"
|
||||
push!(block, LaTeX(String(take!(buffer)) |> chomp))
|
||||
else
|
||||
push!(block, Code(flavor, String(take!(buffer)) |> chomp))
|
||||
end
|
||||
return true
|
||||
else
|
||||
seek(stream, line_start)
|
||||
end
|
||||
end
|
||||
write(buffer, readline(stream, chomp=false))
|
||||
end
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
function github_paragraph(stream::IO, md::MD)
|
||||
skipwhitespace(stream)
|
||||
buffer = IOBuffer()
|
||||
p = Paragraph()
|
||||
push!(md, p)
|
||||
while !eof(stream)
|
||||
char = read(stream, Char)
|
||||
if char == '\n'
|
||||
eof(stream) && break
|
||||
if blankline(stream) || parse(stream, md, breaking = true)
|
||||
break
|
||||
else
|
||||
write(buffer, '\n')
|
||||
end
|
||||
else
|
||||
write(buffer, char)
|
||||
end
|
||||
end
|
||||
p.content = parseinline(seek(buffer, 0), md)
|
||||
return true
|
||||
end
|
||||
|
||||
@flavor github [list, indentcode, blockquote, admonition, footnote, fencedcode, hashheader,
|
||||
github_table, github_paragraph,
|
||||
|
||||
linebreak, escapes, en_dash, inline_code, asterisk_bold,
|
||||
asterisk_italic, image, footnote_link, link, autolink]
|
||||
|
||||
168
julia-0.6.3/share/julia/base/markdown/GitHub/table.jl
Normal file
168
julia-0.6.3/share/julia/base/markdown/GitHub/table.jl
Normal file
@@ -0,0 +1,168 @@
|
||||
# This file is a part of Julia. License is MIT: https://julialang.org/license
|
||||
|
||||
mutable struct Table
|
||||
rows::Vector{Vector{Any}}
|
||||
align::Vector{Symbol}
|
||||
end
|
||||
|
||||
function parserow(stream::IO)
|
||||
withstream(stream) do
|
||||
line = readline(stream)
|
||||
row = split(line, r"(?<!\\)\|")
|
||||
length(row) == 1 && return
|
||||
isempty(row[1]) && shift!(row)
|
||||
map!(x -> strip(replace(x, "\\|", "|")), row, row)
|
||||
isempty(row[end]) && pop!(row)
|
||||
return row
|
||||
end
|
||||
end
|
||||
|
||||
function rowlength!(row, len)
|
||||
while length(row) < len push!(row, "") end
|
||||
while length(row) > len pop!(row) end
|
||||
return row
|
||||
end
|
||||
|
||||
const default_align = :r
|
||||
|
||||
function parsealign(row)
|
||||
align = Symbol[]
|
||||
for s in row
|
||||
(length(s) ≥ 3 && s ⊆ Set("-:")) || return
|
||||
push!(align,
|
||||
s[1] == ':' ? (s[end] == ':' ? :c : :l) :
|
||||
s[end] == ':' ? :r :
|
||||
default_align)
|
||||
end
|
||||
return align
|
||||
end
|
||||
|
||||
function github_table(stream::IO, md::MD)
|
||||
withstream(stream) do
|
||||
skipblank(stream)
|
||||
rows = []
|
||||
cols = 0
|
||||
align = nothing
|
||||
while (row = parserow(stream)) !== nothing
|
||||
if length(rows) == 0
|
||||
isempty(row[1]) && return false
|
||||
cols = length(row)
|
||||
end
|
||||
if align === nothing && length(rows) == 1 # Must have a --- row
|
||||
align = parsealign(row)
|
||||
(align === nothing || length(align) != cols) && return false
|
||||
else
|
||||
push!(rows, map(x -> parseinline(x, md), rowlength!(row, cols)))
|
||||
end
|
||||
end
|
||||
length(rows) <= 1 && return false
|
||||
push!(md, Table(rows, align))
|
||||
return true
|
||||
end
|
||||
end
|
||||
|
||||
function html(io::IO, md::Table)
|
||||
withtag(io, :table) do
|
||||
for (i, row) in enumerate(md.rows)
|
||||
withtag(io, :tr) do
|
||||
for c in md.rows[i]
|
||||
withtag(io, i == 1 ? :th : :td) do
|
||||
htmlinline(io, c)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
mapmap(f, xss) = map(xs->map(f, xs), xss)
|
||||
|
||||
colwidths(rows; len = length, min = 0) =
|
||||
reduce((x,y) -> max.(x,y), [min; convert(Vector{Vector{Int}}, mapmap(len, rows))])
|
||||
|
||||
padding(width, twidth, a) =
|
||||
a == :l ? (0, twidth - width) :
|
||||
a == :r ? (twidth - width, 0) :
|
||||
a == :c ? (floor(Int, (twidth-width)/2), ceil(Int, (twidth-width)/2)) :
|
||||
error("Invalid alignment $a")
|
||||
|
||||
function padcells!(rows, align; len = length, min = 0)
|
||||
widths = colwidths(rows, len = len, min = min)
|
||||
for i = 1:length(rows), j = indices(rows[1],1)
|
||||
cell = rows[i][j]
|
||||
lpad, rpad = padding(len(cell), widths[j], align[j])
|
||||
rows[i][j] = " "^lpad * cell * " "^rpad
|
||||
end
|
||||
return rows
|
||||
end
|
||||
|
||||
_dash(width, align) =
|
||||
align == :l ? ":" * "-"^width * " " :
|
||||
align == :r ? " " * "-"^width * ":" :
|
||||
align == :c ? ":" * "-"^width * ":" :
|
||||
throw(ArgumentError("Invalid alignment $align"))
|
||||
|
||||
function plain(io::IO, md::Table)
|
||||
cells = mapmap(md.rows) do each
|
||||
replace(plaininline(each), "|", "\\|")
|
||||
end
|
||||
padcells!(cells, md.align, len = length, min = 3)
|
||||
for i = indices(cells,1)
|
||||
print(io, "| ")
|
||||
join(io, cells[i], " | ")
|
||||
println(io, " |")
|
||||
if i == 1
|
||||
print(io, "|")
|
||||
join(io, [_dash(length(cells[i][j]), md.align[j]) for j = indices(cells[1],1)], "|")
|
||||
println(io, "|")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function rst(io::IO, md::Table)
|
||||
cells = mapmap(rstinline, md.rows)
|
||||
padcells!(cells, md.align, len = length, min = 3)
|
||||
single = ["-"^length(c) for c in cells[1]]
|
||||
double = ["="^length(c) for c in cells[1]]
|
||||
function print_row(row, row_sep, col_sep)
|
||||
print(io, col_sep, row_sep)
|
||||
join(io, row, string(row_sep, col_sep, row_sep))
|
||||
println(io, row_sep, col_sep)
|
||||
end
|
||||
print_row(single, '-', '+')
|
||||
for i = 1:length(cells)
|
||||
print_row(cells[i], ' ', '|')
|
||||
i ≡ 1 ? print_row(double, '=', '+') :
|
||||
print_row(single, '-', '+')
|
||||
end
|
||||
end
|
||||
|
||||
function term(io::IO, md::Table, columns)
|
||||
cells = mapmap(terminline, md.rows)
|
||||
padcells!(cells, md.align, len = ansi_length)
|
||||
for i = 1:length(cells)
|
||||
join(io, cells[i], " ")
|
||||
println(io)
|
||||
if i == 1
|
||||
join(io, ["–"^ansi_length(cells[i][j]) for j = 1:length(cells[1])], " ")
|
||||
println(io)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function latex(io::IO, md::Table)
|
||||
wrapblock(io, "tabular") do
|
||||
align = md.align
|
||||
println(io, "{$(join(align, " | "))}")
|
||||
for (i, row) in enumerate(md.rows)
|
||||
for (j, cell) in enumerate(row)
|
||||
j != 1 && print(io, " & ")
|
||||
latexinline(io, cell)
|
||||
end
|
||||
println(io, " \\\\")
|
||||
if i == 1
|
||||
println("\\hline")
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user