Proper markdown formatting

This commit is contained in:
Mouse Reeve
2022-02-04 12:06:47 -08:00
parent fefb7e582a
commit 0683ce1c33
3 changed files with 26 additions and 2 deletions

View File

@ -0,0 +1,21 @@
# Generated by Django 3.2.11 on 2022-02-04 20:06
import bookwyrm.models.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0132_alter_user_preferred_language"),
]
operations = [
migrations.AlterField(
model_name="listitem",
name="notes",
field=bookwyrm.models.fields.HtmlField(
blank=True, max_length=300, null=True
),
),
]