Closed Maksim-Burtsev closed 2 years ago
As we know Markdown support syntax highlight in many languages and this makes docs more readable and pretty:
Before
from mptt.models import MPTTModel, TreeForeignKey class Category(MPTTModel): ... parent = TreeForeignKey('self', null=True, blank=True) slug = models.SlugField() class Meta: unique_together = ('slug', 'parent')
After
So i update this in readme =)
This is so nice, thank you very much!
As we know Markdown support syntax highlight in many languages and this makes docs more readable and pretty:
Before
After
So i update this in readme =)