From b13600be72bf097eb8e1fb265561cfc3a5226358 Mon Sep 17 00:00:00 2001 From: Eik-S Date: Mon, 17 Jun 2019 14:26:42 +0200 Subject: [PATCH 1/3] README.md: Made Install django_inlinecss instructions more clear. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a67942..9ff6a5b 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,11 @@ template language. #### Step 2: Install django_inlinecss -Add ```django_inlinecss``` to your ```settings.py```: +1. Install `django-inlinecss` +```bash +pip install django-inlinecss +``` +2. Add ```django_inlinecss``` to your ```settings.py```: ```python INSTALLED_APPS = ( From 07cde3e10245e0937e27632fdff13b5e09364519 Mon Sep 17 00:00:00 2001 From: Eik-S Date: Mon, 17 Jun 2019 14:29:42 +0200 Subject: [PATCH 2/3] README.md: Fixed indentation issue with list --- .idea/django-inlinecss.iml | 12 ++++++++++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ README.md | 27 +++++++++++++-------------- 5 files changed, 45 insertions(+), 14 deletions(-) create mode 100644 .idea/django-inlinecss.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/django-inlinecss.iml b/.idea/django-inlinecss.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/django-inlinecss.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..28a804d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..1c1c95c --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 9ff6a5b..6419bfa 100644 --- a/README.md +++ b/README.md @@ -21,21 +21,20 @@ template language. #### Step 2: Install django_inlinecss 1. Install `django-inlinecss` -```bash -pip install django-inlinecss -``` + ```bash + pip install django-inlinecss + ``` 2. Add ```django_inlinecss``` to your ```settings.py```: - -```python -INSTALLED_APPS = ( - 'django.contrib.auth', - 'django.contrib.webdesign', - 'django.contrib.contenttypes', - '...', - '...', - '...', - 'django_inlinecss') -``` + ```python + INSTALLED_APPS = ( + 'django.contrib.auth', + 'django.contrib.webdesign', + 'django.contrib.contenttypes', + '...', + '...', + '...', + 'django_inlinecss') + ``` #### Step 3: Use the templatetag From 461d160ff4fd440224ee9e20d2b201d916a34325 Mon Sep 17 00:00:00 2001 From: Eik-S Date: Mon, 17 Jun 2019 14:33:49 +0200 Subject: [PATCH 3/3] README.md: Newline between list item and code. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6419bfa..2dd23b5 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,12 @@ template language. #### Step 2: Install django_inlinecss 1. Install `django-inlinecss` + ```bash pip install django-inlinecss ``` 2. Add ```django_inlinecss``` to your ```settings.py```: + ```python INSTALLED_APPS = ( 'django.contrib.auth',