Skip to content

Commit

Permalink
Use Docusaurus Faster, fix html markup warning (and other stuff)
Browse files Browse the repository at this point in the history
  • Loading branch information
yell0wsuit committed Nov 5, 2024
1 parent 7493e5e commit b05508e
Show file tree
Hide file tree
Showing 6 changed files with 2,301 additions and 1,339 deletions.
2 changes: 1 addition & 1 deletion contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ When making a pull request, please ensure that your changes are relevant to the

- Keep changes scoped: Only modify files that are directly related to the issue or feature you are working on. Avoid including changes to unrelated files or parts of the project. Example: in a single pull request, you are fixing this bug in the ``X.js`` file, but you make changes to the ``./docs/Y.md`` file because you have found a typo there.
- Separate concerns: If you need to make changes to unrelated parts of the project, please do so in separate pull requests. This helps keep the review process focused and efficient.
- Clear commit essages: Ensure your commit messages clearly describe the changes made and reference the related issue or feature.
- Clear commit messages: Ensure your commit messages clearly describe the changes made and reference the related issue or feature.

By following these guidelines, you help maintain the project's clarity and ease of maintenance. Thank you for your contributions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ Traditionally-constructed letters are now much less common than other forms of c
<details>
<summary>Text version</summary>

> *Yours sincerely*
> <p style={{fontFamily: "serif", fontStyle: "italic"}}>Luke</p>
> *Yours sincerely*
> <span style={{fontFamily: "serif", fontStyle: "italic"}}>Luke</span>
>
> *Luke Forbes*
</details>
Expand Down Expand Up @@ -58,25 +59,29 @@ For more information about paragraphing, [(see here)](./paragraphs).

**Example of a formal letter and envelope**

> <p style={{textAlign: "right"}}>14 Plowden Road<br />Torquay<br />Devon<br />TQ6 1RS<br />Tel 0742 06538</p>
>
> <p style={{textAlign: "right"}}>16 June 2016</p>
>
> The Secretary
> Hall School of Design
> 39 Beaumont Street
> London
> W4 4LJ
>
> Dear Sir or Madam
>
> I would be grateful if you would send me information
<blockquote>

<p style={{textAlign: "right"}}>14 Plowden Road<br />Torquay<br />Devon<br />TQ6 1RS<br />Tel 0742 06538</p>

<p style={{textAlign: "right"}}>16 June 2016</p>

The Secretary
Hall School of Design
39 Beaumont Street
London
W4 4LJ

Dear Sir or Madam

I would be grateful if you would send me information
about the regulations for admission to the Hall School
of Design. Could you also tell me whether the School
arranges accommodation for students?
>
> Your faithfully
> <p style={{fontFamily: "serif"}}>Keith Parker</p>
> Keith Parker

Your faithfully
<span style={{fontFamily: "serif"}}>Keith Parker</span>

Keith Parker
</blockquote>

</details>
1 change: 1 addition & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ const config = {

future: {
experimental_router: isHashRouter ? "hash" : "browser",
experimental_faster: true,
},
};

Expand Down
Loading

0 comments on commit b05508e

Please sign in to comment.