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

test pr review workflow #42

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/workflows/pr-check-lint_content.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ jobs:
TMPFILE=$(mktemp)
git diff >"${TMPFILE}"
git stash -u && git stash drop
echo dumping tmp file...
cat ${TMPFILE}

reviewdog \
-name="mdn-linter" \
-f=diff \
Expand Down
14 changes: 5 additions & 9 deletions files/en-us/web/html/element/summary/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,25 +161,21 @@ The CSS includes the `[open]` [attribute selector](/en-US/docs/Web/CSS/Attribute
<h1>Quotes from Helen Keller</h1>
<summary>On women's rights</summary>
<p>
<q
>We have prayed, we have coaxed, we have begged, for the vote, with the
<q>We have prayed, we have coaxed, we have begged, for the vote, with the

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[mdn-linter] reported by reviewdog 🐶

Suggested change
<q>We have prayed, we have coaxed, we have begged, for the vote, with the
<q
>We have prayed, we have coaxed, we have begged, for the vote, with the

hope that men, out of chivalry, would bestow equal rights upon women and
take them into partnership in the affairs of the state. We hoped that
their common sense would triumph over prejudices and stupidity. We thought
their boasted sense of justice would overcome the errors that so often
fetter the human spirit; but we have always gone away empty-handed. We
shall beg no more.</q
>
fetter the human spirit; but we have gone away empty-handed. We shall beg
no more.</q>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[mdn-linter] reported by reviewdog 🐶

Suggested change
no more.</q>
no more.</q
>

</p>
</details>

<details>
<summary>On optimism</summary>
<p>
<q
>Optimism is the faith that leads to achievement; nothing can be done
without hope.</q
>
<q>Optimism is the faith that leads to achievement; nothing can be done
without hope.</q>
Comment on lines +177 to +178

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[mdn-linter] reported by reviewdog 🐶

Suggested change
<q>Optimism is the faith that leads to achievement; nothing can be done
without hope.</q>
<q
>Optimism is the faith that leads to achievement; nothing can be done
without hope.</q
>

</p>
</details>
```
Expand Down
Loading