Data for the WebProfiles support center.
- Find the category that you would like to add an article to. (e.g.
categories/announcementsfolder) - Edit the
data.jsonfile to include the following details:
{
"category": "announcements",
"data": [
{
...
}, {
"name": "Article Title Here",
"slug": "article-title-here"
}
]
}- Create a file named after the slug you provided above (e.g.
article-title-here.json). - In the file that you have just created, add the following data (Note: You can fetch the ISO date by running
new Date().toISOString()in your browser's console):
{
"title": "Article Title Here",
"author": "Your Name Here (e.g. Joshua M)",
"date": "ISO date (e.g. 2021-10-17T02:41:19.198Z)"
}- Create a file in the
markdownfolder, named after your article's slug (e.g.markdown/announcements/article-title-here.md). - In the Markdown file, write the support article using Markdown.
- Create a pull request on the main repository located at https://github.com/WebProfiles-me/support-data.