From 4274d7faf512dd20b088e66494524aa0424eecf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Ara=C3=BAjo=20=5BSSW=5D?= Date: Mon, 4 Nov 2024 18:56:26 -0800 Subject: [PATCH] Small improvemnents to rule references --- rules/rule/rule.md | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/rules/rule/rule.md b/rules/rule/rule.md index cee964875af..920b7ab6156 100644 --- a/rules/rule/rule.md +++ b/rules/rule/rule.md @@ -54,7 +54,7 @@ See a few examples of SSW Rules that follow the structure of good and bad exampl ###### This is a heading 6 and below is a blockquote > Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. -> - Someone famous in Source Title +> \- Someone famous ``` **Figure: Markdown to generate headings and blockquotes** @@ -91,39 +91,35 @@ Lorem ipsum dolor sit amet. Ut enim ad minim veniam, quis nostrud exercitation. > Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. > -> * Someone famous in Source Title +> \- Someone famous --- ### 2. Text decorations ```markdown -_This text will be italic_ -_This will also be italic_ +_This text will be italic._ -**This text will be bold** -**This will also be bold** +**And this text will be bold.** -_You **can** combine them_ +~~strikethrough.~~ -~~strikethrough~~ +_You **can** combine them_. -These words are surrounded by a <mark> (HTML needed) +These words are surrounded by a <mark> (HTML needed). ``` **Figure: Markdown to generate different text styles** -_This text will be italic_ -_This will also be italic_ +_This text will be italic._ -**This text will be bold** -**This will also be bold** +**And this text will be bold.** -~~strikethrough~~ +~~strikethrough.~~ -_You **can** combine them_ +_You **can** combine them_. -These words are surrounded by a <mark> (HTML needed) +These words are surrounded by a <mark> (HTML needed). ---