From 0bddaceca44798398cfe3d718e91e976bd3105e3 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sat, 9 May 2020 10:36:11 -0400 Subject: [PATCH] Fix docs/quickstart.rst to use reStructured Text. Previously used .md, but markdown isn't in the default installation, so using a format which is. An alternative fix would be to show how to install markdown in the quickstart. Signed-off-by: Wilson Snyder --- docs/quickstart.rst | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 1f6358a7..fd5a1af2 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -38,14 +38,18 @@ Create an article You cannot run Pelican until you have created some content. Use your preferred text editor to create your first article with the following content:: - Title: My First Review - Date: 2010-12-03 10:20 - Category: Review - + My First Review + ############### + + :date: 2010-12-03 10:20 + :tags: reviews + :category: Review + :summary: My First Review + Following is a review of my favorite mechanical keyboard. -Given that this example article is in Markdown format, save it as -``~/projects/yoursite/content/keyboard-review.md``. +Given that this example article is in reStructuredText format, save it as +``~/projects/yoursite/content/keyboard-review.rst``. Generate your site ------------------