2
0
Fork 0
textout/textoutpc/demo/templates/page.html

28 lines
1.6 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "default.html" %}
{% block meta %}<title>textoutpc — Planète Casio's flavour of BBcode</title>
<meta property="og:description" name="description" content="Official website for testing “textout”, Planète Casio's flavour of BBcode.">
<link rel="canonical" href="{{ url }}/">
<meta name="author" content="Thomas Touhey">
<link rel="author" content="https://thomas.touhey.fr/">{%
endblock %}{% block content %}{% if result != None
%}<!-- Résultat de la traduction. -->
<div class="demo textout">
{% autoescape false %}{{ result }}{% endautoescape %}
</div>
{% endif
%}<!-- Zone d'entrée de texte. -->
<div class="inp">
<form method="POST">
<textarea name="text" placeholder="Votre texte ici…">{{ text }}</textarea>
<input type="submit" value="Voir le résultat">
</form>
</div>
<div class="desc">
<p><a href="{{ url_for("index", _external=True) }}">textoutpc</a> est un projet de traducteur d'un langage de formattage, le BBcode (adapté par et au site <a href="https://www.planet-casio.com/Fr/">Planète Casio</a>), en d'autres dont le HTML. Ce site, <a href="https://gitea.planet-casio.com/cake/textout">dont la source est disponible ici</a>, est la démonstration de ce traducteur.</p>
<p>Pour tester le traducteur, entrez du texte dans la zone d'écriture et cliquez sur «Voir le résultat». Pour parler au sujet de ce traducteur, il y a <a href="https://www.planet-casio.com/Fr/forums/lecture_sujet.php?id=15106">ce sujet sur Planète Casio</a>. Pour signaler des failles de sécurité (XSS, RCE) dans le traducteur, merci de me contacter par e-mail sur <a href="mailto:thomas@touhey.fr">thomas@touhey.fr</a>.</p>
</div>{% endblock %}