sample MD file

Here is a sample markdown file.

I am italics and bold and code.

  • I am a bulleted list

  • I am the second line of a bulleted list

  1. I am a numbered list

  2. I am the second line of a numbered list

I am a code block…

from django.db import models
from singleton2.models import SingletonMixin

class MyModel(SingletonMixin, models.Model):
  pass