Skip to content

Commit f4fd92d

Browse files
committed
Refactor CKEditor to pure markdown
1 parent c5646a6 commit f4fd92d

File tree

541 files changed

+27016
-24479
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

541 files changed

+27016
-24479
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ All notable changes to `blogger` will be documented in this file
1212
- Publishing of assets - currently dependant on ckeditor
1313
- PostController now have CRUD functionality
1414

15+
## 1.1.0 - 19-01-2020
16+
17+
- Moved away from CKEditor - pure parsed markdown handled by Vue
18+
- Provided support for better real-time content writing
19+
1520
### TODO/WIP:
1621

1722
- TagController CRUD

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,16 @@ within a different directory or has a different primary key it can be changed he
124124
],
125125
```
126126

127+
Optionally you can follow the [artesaos/seotools](https://github.com/artesaos/seotools#in-your-view) guide to help
128+
provide some common SEO techniques for your public frontend:
129+
130+
```html
131+
{{-- Within the head of your app.blade.php file --}}
132+
{!! SEOMeta::generate() !!}
133+
{!! OpenGraph::generate() !!}
134+
```
135+
136+
127137
## Testing
128138

129139
Run the tests with:
@@ -157,6 +167,11 @@ $user->posts;
157167
$user->comments;
158168
```
159169

170+
```html
171+
{{-- Print the published post markdown content --}}
172+
{!! $post->parsed_markdown !!}
173+
```
174+
160175
Furthermore, in the configuration file, the default is set to true for
161176
allowing both user and public commenting on posts is set here.
162177

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
],
2121
"require": {
2222
"php": "^7.1",
23+
"artesaos/seotools": "^0.17.1",
2324
"laravel/framework": "~5.8|^6.0"
2425
},
2526
"require-dev": {

public/ckeditor/CHANGES.md

Lines changed: 0 additions & 1838 deletions
This file was deleted.

public/ckeditor/LICENSE.md

Lines changed: 0 additions & 1421 deletions
This file was deleted.

public/ckeditor/README.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

public/ckeditor/adapters/jquery.js

Lines changed: 0 additions & 10 deletions
This file was deleted.

public/ckeditor/build-config.js

Lines changed: 0 additions & 192 deletions
This file was deleted.

0 commit comments

Comments
 (0)