You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,21 @@ Changes to `package-lock.json` and `yarn.lock` files should only be committed wh
95
95
- Updating an existing dependency: Running an update for a package will adjust these files to reflect the new versions.
96
96
- Removing a dependency: Uninstalling a package will update these files to remove the reference to the dependency.
97
97
98
+
### Content File Formats
99
+
100
+
**Use `.md` or `.mdx` file formats** MDX is a markdown format that allows embedded JSX components for more flexibility. Refer to the Docusaurus Docs page [MDX and React](https://docusaurus.io/docs/markdown-features/react) for information on MDX syntax and capabilities.
101
+
102
+
**Always link using explicit heading IDs** when adding or editing headings in a `.md` or `.mdx` file. This prevents broken links if heading text changes later. For example:
103
+
104
+
```markdown
105
+
### My Important Section{#my-important-section}
106
+
```
107
+
Then, you can link to this section using:
108
+
109
+
```markdown
110
+
[Link to my section](#my-important-section)
111
+
```
112
+
98
113
### Add or Edit Feature Cards
99
114
100
115
Feature Cards on the website homepage highlight the key features of the PEcAn Project.
@@ -118,7 +133,7 @@ You should use SVG images when available.
118
133
119
134
The people page contains details of the PEcAn team. The image here is a representation of how the page should look like with placeholder values.
120
135
121
-

136
+

122
137
123
138
```javascript
124
139
constcontributors= [
@@ -177,13 +192,16 @@ tags: [gsoc, gsoc21]
177
192
---
178
193
```
179
194
195
+
196
+
<!-- These screenshots are large and don't appear to be in the right place, if necessary
180
197
## Screenshots
181
198
182
199
This section contains screenshots of website's homepage in light and dark theme.
0 commit comments