mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-14 18:23:27 +00:00
5 lines
159 B
Python
5 lines
159 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
def render_markdown(request):
|
||
|
return render(request, 'core/api/markdown.html', context={'text': request.GET['text']})
|