ryanwinchester / kwiki-laravel by ryanwinchester

Quick wiki or blog with markdown files for laravel
5
3
5
Package Data
Maintainer Username: ryanwinchester
Package Create Date: 2015-09-30
Package Last Update: 2015-09-30
Language: PHP
License: Apache-2.0
Last Refreshed: 2024-03-26 03:04:12
Package Statistics
Total Downloads: 5
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 5
Total Forks: 1
Total Open Issues: 0

Kwiki - Laravel Package

WORK IN PROGRESS, DO NOT USE RIGHT NOW

Version Total Downloads License Scrutinizer Code Quality Build Status

markdown wiki/blog

Usage

Place your markdown files in the /kwiki directory.

Categories are directories and subcategories are subdirectories.

If you place an index.md in a category or subcategory directory, it will be parsed and displayed after the list of subcategories and files.

The views are blade templates and located at resources/views/vendor/kwiki and the master layout template is resources/views/vendor/kwiki/master.blade.php

Installation

Using composer:

composer require "ryanwinchester/kwiki: ^0.1"

Publishing config and other assets

There is a good chance you wil want to override some default things. If that is the case there are a couple of way you can go about it. First, you could publish all the things:

php artisan vendor:publish --provider="Kwiki\KwikiServiceProvider" --force

Or you could publish things individually:

Config:

php artisan vendor:publish --provider="Kwiki\KwikiServiceProvider" --tag="config" --force

Views:

php artisan vendor:publish --provider="Kwiki\KwikiServiceProvider" --tag="views" --force

Public assets:

php artisan vendor:publish --provider="Kwiki\KwikiServiceProvider" --tag="public" --force

Translations:

php artisan vendor:publish --provider="Kwiki\KwikiServiceProvider" --tag="translations" --force

Powered by

  • Laravel - Laravel framework
  • Pagemark - A package I wrote that basically does all the work
  • Parsedown - A popular markdown parser, and this project's default