back to python code highlight on README.md
1 files changed, 35 insertions(+), 29 deletions(-)

M README.md
M README.md +35 -29
@@ 9,42 9,48 @@ Once enabled, backup codes (Static devic
 
 ## Installation
 
-1. Add `django_otp`, `django_otp.plugins.otp_totp`, `django_otp.plugins.otp_static` and `nlotp` to `INSTALLED_APPS`. For example:
+* Add `django_otp`, `django_otp.plugins.otp_totp`, `django_otp.plugins.otp_static` and `nlotp` to `INSTALLED_APPS`. For example:
 
-        INSTALLED_APPS = [
-            'django.contrib.admin',
-            'django.contrib.auth',
-            'django.contrib.contenttypes',
-            'django.contrib.sessions',
-            'django.contrib.messages',
-            'django.contrib.staticfiles',
+```python
+     INSTALLED_APPS = [
+         'django.contrib.admin',
+         'django.contrib.auth',
+         'django.contrib.contenttypes',
+         'django.contrib.sessions',
+         'django.contrib.messages',
+         'django.contrib.staticfiles',
 
-            'django_otp',
-            'django_otp.plugins.otp_totp',
-            'django_otp.plugins.otp_static',
-            'nlotp',
-        ]
+         'django_otp',
+         'django_otp.plugins.otp_totp',
+         'django_otp.plugins.otp_static',
+         'nlotp',
+     ]
+```
 
-1. Add `nlotp.middleware.OTPCheckMiddleware` to `MIDDLEWARE`. It must be installed after `django.contrib.auth.middleware.AuthenticationMiddleware`. For example:
+* Add `nlotp.middleware.OTPCheckMiddleware` to `MIDDLEWARE`. It must be installed after `django.contrib.auth.middleware.AuthenticationMiddleware`. For example:
 
-        MIDDLEWARE = [
-            'django.middleware.security.SecurityMiddleware',
-            'django.contrib.sessions.middleware.SessionMiddleware',
-            'django.middleware.common.CommonMiddleware',
-            'django.middleware.csrf.CsrfViewMiddleware',
-            'django.contrib.auth.middleware.AuthenticationMiddleware',
-            'django.contrib.messages.middleware.MessageMiddleware',
-            'django.middleware.clickjacking.XFrameOptionsMiddleware',
+```python
+     MIDDLEWARE = [
+         'django.middleware.security.SecurityMiddleware',
+         'django.contrib.sessions.middleware.SessionMiddleware',
+         'django.middleware.common.CommonMiddleware',
+         'django.middleware.csrf.CsrfViewMiddleware',
+         'django.contrib.auth.middleware.AuthenticationMiddleware',
+         'django.contrib.messages.middleware.MessageMiddleware',
+         'django.middleware.clickjacking.XFrameOptionsMiddleware',
 
-            'nlotp.middleware.OTPCheckMiddleware',
-        ]
+         'nlotp.middleware.OTPCheckMiddleware',
+     ]
+```
 
-3. Add `nlotp` urls to `urls.py`. For example:
+* Add `nlotp` urls to `urls.py`. For example:
 
-        urlpatterns = [
-            path('otp/', include('nlotp.urls', namespace='nlotp')),
-            path('', include('yourapp.urls', namespace='yourapp')),
-        ]
+```python
+     urlpatterns = [
+         path('otp/', include('nlotp.urls', namespace='nlotp')),
+         path('', include('yourapp.urls', namespace='yourapp')),
+     ]
+```
 
 ## Settings