From 76cd2e706d67dbfae51e0055d9a0bc7e396bdafa Mon Sep 17 00:00:00 2001 From: SatoshiTerasaki Date: Tue, 18 Jan 2022 00:57:30 +0900 Subject: [PATCH] fix --- examples/unicodefun/app.jl | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) 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__)