Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XS✔ ◾ Small improvemnents to rule references #9540

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 12 additions & 16 deletions rules/rule/rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down Expand Up @@ -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_.

<mark>These words</mark> are surrounded by a &lt;mark&gt; (HTML needed)
<mark>These words</mark> are surrounded by a &lt;mark&gt; (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_.

<mark>These words</mark> are surrounded by a &lt;mark&gt; (HTML needed)
<mark>These words</mark> are surrounded by a &lt;mark&gt; (HTML needed).

---

Expand Down
Loading