معرفی شرکت ها


django-markdownme-0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A Django text editor with Markdown and file upload support
ویژگی مقدار
سیستم عامل -
نام فایل django-markdownme-0.1
نام django-markdownme
نسخه کتابخانه 0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Oliver Kovac
ایمیل نویسنده oliver.kovac.2@student.tuke.sk
آدرس صفحه اصلی https://github.com/oliverkovac/django-markdownme
آدرس اینترنتی https://pypi.org/project/django-markdownme/
مجوز MIT License
========== Markdownme ========== Markdownme is a text editor component with Markdown syntax support, simplified file upload and deletion and a history of text changes. Its file-uploading history-containing nature makes it a better choice for more complex text entries which are edited by trusted users such as blog posts, as opposed to short text comments which anyone can post. Detailed documentation is in the github project repository. Quick start ----------- 1. Add "markdownme" to your INSTALLED_APPS setting like this:: INSTALLED_APPS = [ ... 'markdownme', ] 2. Include the markdownme URLconf in your project urls.py like this:: url(r'^markdownme/', include('markdownme.urls')), 3. Run `python manage.py migrate` to create the markdownme models. 4. Run `python manage.py collectstatic` to collect markdownme static files. 5. Create your desired model and derive it from 'MarkdownmeEntry' like this:: class Article(MarkdownmeEntry): 6. Your model now has access to 3 new fields called:: markdown_text parsed_text markdown_identifier 7. Include these in your Article admin fields like this:: fields = ('title', 'date', 'markdown_text', 'markdown_identifier') 8. Start the development server and visit http://127.0.0.1:8000/admin/ to create an article (you'll need the Admin app enabled). 9. Your article text now has a fancy editor and you can also use 'parsed_text' to access the HTML resulting from your parsed Markdown text.


نحوه نصب


نصب پکیج whl django-markdownme-0.1:

    pip install django-markdownme-0.1.whl


نصب پکیج tar.gz django-markdownme-0.1:

    pip install django-markdownme-0.1.tar.gz