Skip to content

Commit 175eb39

Browse files
authored
Merge pull request #36 from hannob-forks/trailingslash
Remove unneeded trailing slashes from tags
2 parents ac6a5bc + 714ba20 commit 175eb39

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

content/pages/contribute-website.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To add new pages, please:
4141
the "Latest News" section at the front page (`content/pages/welcome.md`).
4242

4343

44-
<br/>
44+
<br>
4545
We are looking forward to your contribution!
4646

4747
The Expat development team

content/pages/custom-encodings.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -384,16 +384,16 @@ I wouldn't expect to encounter anything like it in real life.
384384

385385
* We map the bytes 0x00 to 0x7F to the codepoints U+0000 to U+007F
386386
(i.e. we will leave ASCII alone).
387-
* 0x80 is the first byte of a three-byte sequence `s`:<br/>
387+
* 0x80 is the first byte of a three-byte sequence `s`:<br>
388388
```
389389
codepoint = s[1] * 256 + s[2]
390390
```
391-
<br/>`s[1]` is remembered as the _page_ for 0x81 sequences (below).
392-
* 0x81 is the first byte of a two-byte sequence `s`:<br/>
391+
<br>`s[1]` is remembered as the _page_ for 0x81 sequences (below).
392+
* 0x81 is the first byte of a two-byte sequence `s`:<br>
393393
```
394394
codepoint = page * 256 + s[1]
395395
```
396-
<br/>If no page has yet been set (by an 0x80 sequence), it defaults
396+
<br>If no page has yet been set (by an 0x80 sequence), it defaults
397397
to 0.
398398
* 0x82 is the first byte of a two-byte sequence, the codepoint of
399399
which is the value of the second byte. This makes codepoints in the

content/pages/packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Date: 2018-08-19
33
License: MIT
44
slug: packages
55

6-
> Please note, **this website is work-in-progress**.<br />
6+
> Please note, **this website is work-in-progress**.<br>
77
Be encouraged to [join improving this website](../contribute-website/).
88
Thank you!
99

content/pages/users.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Date: 2019-09-15
33
License: MIT
44
slug: users
55

6-
> Please note, **this website is work-in-progress**.<br />
6+
> Please note, **this website is work-in-progress**.<br>
77
Be encouraged to [join improving this website](../contribute-website/).
88
Thank you!
99

content/pages/walkthrough2.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,10 +1274,10 @@ Seriously. Trust the medical profession on this one.
12741274

12751275
<a name="lightbrigade">5</a>:
12761276

1277-
> Theirs not to make reply,<br />
1278-
Theirs not to reason why,<br />
1279-
Theirs but to do and die,<br />
1280-
Into the valley of Death<br />
1277+
> Theirs not to make reply,<br>
1278+
Theirs not to reason why,<br>
1279+
Theirs but to do and die,<br>
1280+
Into the valley of Death<br>
12811281
Rode the six hundred.
12821282

12831283
From _The Charge of the Light Brigade_ by Alfred, Lord Tennyson,

content/pages/welcome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ url:
2626

2727
# What is Expat?
2828

29-
Welcome to Expat, a stream-oriented XML parser library written in C.<br/>
29+
Welcome to Expat, a stream-oriented XML parser library written in C.<br>
3030
Expat excels with files too large to fit RAM, and
3131
where performance and flexibility are crucial.
3232

content/pages/xml-security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Title: XML Security
22
Date: 2025-11-24
33
License: MIT
44

5-
> Please note, **this website is work-in-progress**.<br />
5+
> Please note, **this website is work-in-progress**.<br>
66
Be encouraged to [join improving this website](../../doc/contribute-website/).
77
Thank you!
88

0 commit comments

Comments
 (0)