summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2019-06-22 12:25:01 +0200
committerLaurenz <laurmaedje@gmail.com>2019-06-22 12:25:01 +0200
commitf6fe3b5cdd2805f3975985752f9cb0e04e3daf49 (patch)
treedaddf46ba6add0b7cead1f9015b8f24364672138 /src/lib.rs
parente39a6efccff7ba2b5dd546ddf86f23d2714161e7 (diff)
Implement function layouting ✒
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 334f20b9..4799188b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -216,7 +216,7 @@ mod test {
#[test]
fn features() {
test("features", r"
- **FEATURES TEST PAGE**
+ **Features Test Page**
__Multiline:__
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
@@ -226,7 +226,10 @@ mod test {
__Emoji:__ Hello World! 🌍
- __Styles:__ This is **bold** and that is __italic__!
+ __Styles:__ This is made **bold** and that __italic__ using the built-in syntax!
+
+ __Styles with functions:__ This is in [bold][boldface] and that is in [italic][italics]
+ using library functions!
");
}