mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-03-16 21:40:24 +00:00
7 lines
136 B
Python
7 lines
136 B
Python
from django.db import models
|
|
|
|
from markdownx.models import MarkdownxField
|
|
|
|
|
|
class MyModel(models.Model):
|
|
myfield = MarkdownxField()
|