Skip to content

Commit 26f9f29

Browse files
Lilith HafnerLilith Hafner
authored andcommitted
more fiddling
1 parent 484f937 commit 26f9f29

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/stylemacro.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,10 @@ macro styled_str(raw_content::String)
112112
end =#
113113

114114
# Instead we'll just use a `NamedTuple`
115-
println("raw content")
116-
println(raw_content)
115+
println("repr")
116+
println(repr(raw_content))
117+
println("hash")
118+
println(hash(raw_content))
117119
state = let content = unescape_string(raw_content, ('{', '}', ':', '$', '\n'))
118120
(; content, bytes = Vector{UInt8}(content),
119121
s = Iterators.Stateful(zip(eachindex(content), content)),

0 commit comments

Comments
 (0)