We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03e6999 commit 6044ad4Copy full SHA for 6044ad4
base/docs.jl
@@ -276,17 +276,17 @@ end
276
277
export Text, @text_str, @text_mstr
278
279
-# @doc """
280
-# `Text(s)`: Create an object that renders `s` as plain text.
+@doc """
+`Text(s)`: Create an object that renders `s` as plain text.
281
282
-# HTML("foo")
+ HTML("foo")
283
284
-# You can also use a stream for large amounts of data:
+You can also use a stream for large amounts of data:
285
286
-# Text() do io
287
-# println(io, "foo")
288
-# end
289
-# """ ->
+ Text() do io
+ println(io, "foo")
+ end
+""" ->
290
type Text{T}
291
content::T
292
end
0 commit comments