File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -41,14 +41,15 @@ How to install it?
4141
4242To get the latest stable release from PyPI
4343
44- .. code-block:: bash
45- pip install django-magicembed
44+ ``` bash
45+ pip install django-magicembed
46+ ```
4647
4748To get the latest commit from GitHub
4849
49- .. code-block:: bash
50-
51- pip install -e git+git://github.com/kronoscode/django-magicembed.git#egg=magicembed
50+ ``` bash
51+ pip install -e git+git://github.com/kronoscode/django-magicembed.git#egg=magicembed
52+ ```
5253
5354If you have a requeriments list add this to your requeriments
5455
@@ -58,21 +59,21 @@ If you have a requeriments list add this to your requeriments
5859
59603 . <code >add magicembed to ** INSTALLED_APPS** </code >
6061
61- .. code-block:: python
62- INSTALLED_APPS = (
63- ...,
64- 'magicembed',
65- )
66-
62+ ``` python
63+ INSTALLED_APPS = (
64+ ... ,
65+ ' magicembed' ,
66+ )
67+ ```
6768
6869How to use
6970---------------
7071
7172Before your tags/filters are available in your templates, load them by using
7273
73- .. code-block:: html
74-
75- {% load magicembed_tags %}
74+ ``` html
75+ {% load magicembed_tags %}
76+ ```
7677
7778Now if you need to embed a video, add this template tag to video url
7879field
@@ -98,7 +99,7 @@ How to contrib
9899
99100If you want to contribute to this project, please perform the following steps
100101
101- .. code-block:: bash
102+ ``` bash
102103
103104 # Fork this repository
104105 # Clone your fork
@@ -110,6 +111,7 @@ If you want to contribute to this project, please perform the following steps
110111 git add . && git commit
111112 git push -u origin feature_branch
112113 # Send us a pull request for your feature branch
114+ ```
113115
114116Licence
115117--------------
You can’t perform that action at this time.
0 commit comments