1
0
mirror of https://github.com/flarum/core.git synced 2025-08-09 09:57:06 +02:00

Implement TextFormatter for posts

Get rid of formatting on user bios, we'll do that with JavaScript
This commit is contained in:
Toby Zerner
2015-07-22 16:03:48 +09:30
parent 6c50f1614b
commit a0fe68272c
15 changed files with 243 additions and 1973 deletions

View File

@@ -23,7 +23,6 @@ class CreatePostsTable extends Migration
$table->integer('user_id')->unsigned()->nullable();
$table->string('type', 100)->nullable();
$table->text('content')->nullable();
$table->text('content_html')->nullable();
$table->dateTime('edit_time')->nullable();
$table->integer('edit_user_id')->unsigned()->nullable();