Skip to content

Commit a0659a3

Browse files
authored
Merge pull request #295 from NYU-RTS/minor-cleanup
fix broken anchor, update config to throw on broken markdown links
2 parents b7c1ad9 + 005cf7a commit a0659a3

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

docs/hpc/03_storage/05_best_practices.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Best Practices on HPC Storage
22
## User Quota Limits and the myquota command
3-
All users have quote limits set on HPC fie systems. There are several types of quota limits, such as limits on the amount of disk space (disk quota), number of files (inode quota) etc. The default user quota limits on HPC file systems are listed [on our Data Management page](./01_intro_and_data_management.mdx#hpc-storage-mounts-comparison-table).
3+
All users have quote limits set on HPC fie systems. There are several types of quota limits, such as limits on the amount of disk space (disk quota), number of files (inode quota) etc. The default user quota limits on HPC file systems are listed [on our Data Management page](./01_intro_and_data_management.mdx#hpc-storage-comparison-table).
44

55
:::warning[Home directory inode quotas]
66
_One of the common issues users report is running out of inodes in their home directory._ This usually occurs during software installation, for example installing conda environment under their home directory. Running out of quota causes a variety of issues such as running user jobs being interrupted or users being unable to finish the installation of packages under their home directory.

docusaurus.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,17 @@ const config: Config = {
2222
deploymentBranch: "main",
2323

2424
onBrokenLinks: "throw",
25-
onBrokenMarkdownLinks: "warn",
2625

2726
//https://docusaurus.io/docs/deployment#docusaurusconfigjs-settings
2827
trailingSlash: true,
2928

3029
markdown: {
3130
mermaid: true,
31+
32+
hooks: {
33+
onBrokenMarkdownLinks: "throw",
34+
onBrokenMarkdownImages: "throw",
35+
},
3236
},
3337
themes: ["@docusaurus/theme-mermaid"],
3438

0 commit comments

Comments
 (0)