Skip to content

Commit 1dd0679

Browse files
authored
Merge branch 'main' into svg-path-length
2 parents 5124e1d + 692790b commit 1dd0679

File tree

5 files changed

+238
-256
lines changed

5 files changed

+238
-256
lines changed

files/en-us/web/html/element/cite/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ browser-compat: html.elements.cite
77

88
{{HTMLSidebar}}
99

10-
The **`<cite>`** [HTML](/en-US/docs/Web/HTML) element is used to mark up the title of a cited creative work. The reference may be in an abbreviated form according to context-appropriate conventions related to citation metadata.
10+
The **`<cite>`** [HTML](/en-US/docs/Web/HTML) element is used to mark up the title of a creative work. The reference may be in an abbreviated form according to context-appropriate conventions related to citation metadata.
1111

1212
{{InteractiveExample("HTML Demo: &lt;cite&gt;", "tabbed-standard")}}
1313

@@ -42,7 +42,7 @@ This element only includes the [global attributes](/en-US/docs/Web/HTML/Global_a
4242

4343
## Usage notes
4444

45-
In the context of the `<cite>` element, a creative work that might be cited could be, for example, one of the following:
45+
In the context of the `<cite>` element, a creative work could be, for example, one of the following:
4646

4747
- A book
4848
- A research paper

files/en-us/web/html/element/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Use the HTML inline text semantic to define the meaning, structure, or style of
8989
| {{HTMLElement("bdi")}} | Tells the browser's bidirectional algorithm to treat the text it contains in isolation from its surrounding text. It's particularly useful when a website dynamically inserts some text and doesn't know the directionality of the text being inserted. |
9090
| {{HTMLElement("bdo")}} | Overrides the current directionality of text, so that the text within is rendered in a different direction. |
9191
| {{HTMLElement("br")}} | Produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant. |
92-
| {{HTMLElement("cite")}} | Used to mark up the title of a cited creative work. The reference may be in an abbreviated form according to context-appropriate conventions related to citation metadata. |
92+
| {{HTMLElement("cite")}} | Used to mark up the title of a creative work. The reference may be in an abbreviated form according to context-appropriate conventions related to citation metadata. |
9393
| {{HTMLElement("code")}} | Displays its contents styled in a fashion intended to indicate that the text is a short fragment of computer code. By default, the content text is displayed using the user agent's default monospace font. |
9494
| {{HTMLElement("data")}} | Links a given piece of content with a machine-readable translation. If the content is time- or date-related, the `<time>` element must be used. |
9595
| {{HTMLElement("dfn")}} | Used to indicate the term being defined within the context of a definition phrase or sentence. The ancestor {{HTMLElement("p")}} element, the {{HTMLElement("dt")}}/{{HTMLElement("dd")}} pairing, or the nearest section ancestor of the `<dfn>` element, is considered to be the definition of the term. |

lefthook.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,11 @@ pre-commit:
5151
run: yarn node scripts/update-moved-file-links.js --check
5252

5353
post-merge:
54+
only:
55+
- ref: main
5456
commands:
55-
yarn-install-post-merge-main:
56-
run: |
57-
BRANCH="$(git rev-parse --abbrev-ref HEAD)"
58-
if [ "$BRANCH" != "main" ]; then
59-
exit 0
60-
else
61-
yarn install
62-
fi
57+
yarn-install:
58+
run: yarn install
6359

6460
output:
6561
- summary

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@
5858
"yaml": "^2.7.0"
5959
},
6060
"devDependencies": {
61-
"cspell": "8.17.5",
61+
"cspell": "8.18.0",
6262
"cspell-group-by-file-reporter": "^1.0.1",
6363
"jest": "^29.7.0",
64-
"lefthook": "^1.11.4",
64+
"lefthook": "^1.11.5",
6565
"lint-staged": "15.5.0",
6666
"markdownlint-cli2": "0.17.2",
6767
"markdownlint-rule-search-replace": "1.2.0",

0 commit comments

Comments
 (0)