Skip to content

damlayildiz/Wiki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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