• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

JuliaLang / julia / #37628

22 Sep 2023 05:02AM UTC coverage: 85.993% (+0.2%) from 85.841%
#37628

push

local

web-flow
slot2ssa: consider liveness when inserting `PiNode`s (#51406)

3 of 3 new or added lines in 1 file covered. (100.0%)

72179 of 83936 relevant lines covered (85.99%)

11324978.67 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

53.33
/stdlib/Markdown/src/IPython/IPython.jl
1
# This file is a part of Julia. License is MIT: https://julialang.org/license
2

3
mutable struct LaTeX
4
    formula::String
202✔
5
end
6

7
@trigger '$' ->
×
8
function tex(stream::IO, md::MD)
×
9
    result = parse_inline_wrapper(stream, "\$", rep = true)
10,782✔
10
    return result === nothing ? nothing : LaTeX(result)
10,782✔
11
end
12

13
function blocktex(stream::IO, md::MD)
10,782✔
14
    withstream(stream) do
10,782✔
15
        ex = tex(stream, md)
10,782✔
16
        if ex ≡ nothing
10,782✔
17
            return false
10,782✔
18
        else
19
            push!(md, ex)
×
20
            return true
×
21
        end
22
    end
23
end
24

25
show(io::IO, tex::LaTeX) =
×
26
    print(io, '$', tex.formula, '$')
27

28
latex(io::IO, tex::LaTeX) =
×
29
    println(io, "\$\$", tex.formula, "\$\$")
30

31
latexinline(io::IO, tex::LaTeX) =
×
32
    print(io, '$', tex.formula, '$')
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc