Skip to content

Commit

Permalink
Update Base.show for Attributes (#4)
Browse files Browse the repository at this point in the history
Update Base.show for Attributes
  • Loading branch information
kdheepak authored Oct 1, 2019
2 parents 3881371 + 873ff86 commit efe23b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pandoc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ Base.show(io::IO, e::Link) = print(io, """Link(
target = $(e.target),
)""")
Base.show(io::IO, e::Attributes) = print(io, """Attributes(
identifier = $(e.identifier),
identifier = "$(e.identifier)",
classes = $(e.classes),
attributes = $(e.attributes),
)""")
Expand Down

0 comments on commit efe23b4

Please sign in to comment.