-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from janakhpon/GDEV001
GDEV001
- Loading branch information
Showing
1 changed file
with
28 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,34 @@ | ||
# GTGBlog ==> Our Group Page Blog | ||
Knowledge Sharing Blog for my own use and sharing with my friends about web development and machine learning technology. | ||
# GTGBlog(Greentech Innovation Group) | ||
Knowledge Sharing Blog for my own reference and for sharing with my friends about web development and machine learning technology. | ||
|
||
|
||
## Adding Markdown Pages | ||
### TABLE OF CONTENTS | ||
#### Read files into Gatsby from the filesystem | ||
` | ||
Install | ||
Add plugin | ||
Transform Markdown to HTML and frontmatter to data using gatsby-transformer-remark | ||
Install transformer plugin | ||
Configure plugin | ||
Add a Markdown file | ||
Frontmatter for metadata in Markdown files | ||
Create a page template for the Markdown files | ||
Create static pages using Gatsby’s Node.js createPage API | ||
Other tutorials | ||
Gatsby Markdown starters | ||
Gatsby can use Markdown files to create pages in your site. You add plugins to read and understand folders with Markdown files and from them create pages automatically. | ||
## Adding Markdown Pages to Gatsby | ||
``` | ||
``` | ||
|
||
` | ||
### TABLE OF CONTENTS | ||
Read files into Gatsby from the filesystem | ||
``` | ||
Install | ||
Add plugin | ||
Transform Markdown to HTML and frontmatter to data using gatsby-transformer-remark | ||
Install transformer plugin | ||
Configure plugin | ||
Add a Markdown file | ||
Frontmatter for metadata in Markdown files | ||
Create a page template for the Markdown files | ||
Create static pages using Gatsby’s Node.js createPage API | ||
Other tutorials | ||
Gatsby Markdown starters | ||
Gatsby can use Markdown files to create pages in your site. You add plugins to read and understand folders with Markdown files and from them create pages automatically. | ||
``` | ||
|
||
## Here are the steps Gatsby follows for making this happen. | ||
``` | ||
Read files into Gatsby from the filesystem | ||
Transform Markdown to HTML and frontmatter to data | ||
Add a Markdown file | ||
Create a page component for the Markdown files | ||
Create static pages using Gatsby’s Node.js createPage API | ||
``` | ||
|
||
` | ||
Read files into Gatsby from the filesystem | ||
Transform Markdown to HTML and frontmatter to data | ||
Add a Markdown file | ||
Create a page component for the Markdown files | ||
Create static pages using Gatsby’s Node.js createPage API | ||
|
||
` |