Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.57 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.57 KB

Wiki

This is a simple Wikipedia like encyclopedia website which allows users to search, edit and create new entries.

Features

  • Visiting /wiki/TITLE, where TITLE is the title of an encyclopedia entry, renders a page that displays the contents of that encyclopedia entry. If the entry requested does not exist, user is presented with an Page Not Found error.

  • Search box where user can write the query they are looking for. And if no such query exists they are represented with a list of other entries that include the query as a substring in their name.

  • Create New Page where users can create their own entries using Markdown.

  • Edit Page where users are presented with the existing Markdown content which they can edit and save.

  • Random Page takes the user to a random encyclopedia entry.

Screenshots and Demo

Screenshot from 2021-03-14 00-13-33


Screenshot from 2021-03-14 00-13-39


Screenshot from 2021-03-14 00-15-09

Youtube Demo Link

Run Search locally

Step 1: Clone project

 git clone https://github.com/damlayildiz/Wiki.git
 cd Wiki 

Step 2: Install markdown

 pip install "Markdown==3.2.1"

Step 3: Run the project

 python manage.py runserver