@@ -210,10 +210,12 @@ includeCurrentVersion: false,
210210
211211## How should I write pages?
212212
213- 1 . Refer to [ Markdown's guide] ( https://www.markdownguide.org/basic-syntax/ ) for syntax
214- 2 . Refer to [ Docusaurus's guide] ( https://docusaurus.io/docs/next/markdown-features ) for supported Markdown features
215- 3 . For advanced users, refer to [ Markdown MDX] ( https://mdxjs.com/ ) for adding React Components to a Markdown file
216- 4 . for advanced users, you may create React pages using _ .js_ or _ .ts_ file types
213+ 1 . Refer to [ Markdown's guide] ( https://www.markdownguide.org/basic-syntax/ ) for syntax.
214+ Comments should be added using a ` [//]: <> ` start to a line.
215+ HTML commenting—` <!-- --> ` —causes issues with the MDX extension in VS Code.
216+ 2 . Refer to [ Docusaurus's guide] ( https://docusaurus.io/docs/next/markdown-features ) for supported Markdown features.
217+ 3 . For advanced users, refer to [ Markdown MDX] ( https://mdxjs.com/ ) for adding React Components to a Markdown file.
218+ 4 . for advanced users, you may create React pages using _ .js_ or _ .ts_ file types.
217219
218220## How should I name files?
219221
@@ -251,6 +253,23 @@ This helps Users know where they downloaded the file from later, as the asset is
251253
252254 In an ` img/ ` folder next to the markdown files where it will be used.
253255
256+ 6 . Files larger than 100 MB
257+
258+ Files added to GitHub must be smaller than 100 MB—_ (at time of writing in 2025-04)_ .
259+ You will be able to commit a large file locally, but the push to GitHub will fail.
260+ We are storing large files in an Amazon S3 Bucket, rather than the cpr-documentation repository's ` /static/assets ` directory.
261+ Note that this means large files will need to be added by Clearpath Robotics staff, as we do not provide public access to this S3 Bucket.
262+
263+ To add a file:
264+
265+ * Sign into https://us-east-2.console.aws.amazon.com/s3/ .
266+ * Navigate to the S3 Bucket ` cpr-documentation-large-files ` .
267+ * Select the ` Upload ` button, and choose your local file.
268+ * After the file has been uploaded, click on the new object, and copy its ` Object URL ` .
269+ This is the public URL to access the file you uploaded.
270+ Note that this S3 Bucket is configured so all files' permissions are automatically set to public access.
271+
272+
254273## How to merge branches into the Production branch?
255274
256275The website is built and deployed using AWS Amplify.
0 commit comments