mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-03 00:25:17 +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']})
|