Reminders about constructing blogs:
- To generate a new blog:
blogdown::new_post(title = 'Post Title', author = 'Your Name')
- To include an image, first put the image in a folder (here it’s named
image) under directorycontent, and use the following code:
<img alt = '' height='400' width='400' src='/images/Pikachu.png' />
- To include a link:
[Zhili's Website](http://zhiliqiao.github.io)
- To rebuild the site and show:
blogdown::build_site() + blogdown::serve_site()