diff --git a/examples/unicodefun/app.jl b/examples/unicodefun/app.jl index 1f416e3..aec4683 100644 --- a/examples/unicodefun/app.jl +++ b/examples/unicodefun/app.jl @@ -1,10 +1,8 @@ using Replay -instructions = raw""" -using UnicodeFun -using LaTeXStrings -str = L"\alpha + \beta + A\hat"; -replace(str, "\$" => "") |> to_latex -""" +instructions = [ + "using UnicodeFun", + "\"\\\\pi\" |> to_latex" +] -replay(instructions, julia_project="@.", use_ghostwriter=true) +replay(instructions, julia_project = @__DIR__)