mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
Text snippets are now rendered as text.
This commit is contained in:
parent
691c21dd0f
commit
6960f67026
3 changed files with 16 additions and 2 deletions
|
@ -83,6 +83,7 @@ LEXER_LIST = getattr(settings, 'DPASTE_LEXER_LIST', (
|
|||
('tcl', 'Tcl'),
|
||||
('tcsh', 'Tcsh'),
|
||||
('tex', 'TeX'),
|
||||
('text', 'Text'),
|
||||
('vb.net', 'VB.net'),
|
||||
('vim', 'VimL'),
|
||||
('xml', 'XML'),
|
||||
|
|
|
@ -88,6 +88,12 @@ tt strong {
|
|||
display: none;
|
||||
}
|
||||
|
||||
.snippet-rendered {
|
||||
font-size: 16px;
|
||||
line-height: 1.5em;
|
||||
max-width: 700px;
|
||||
}
|
||||
|
||||
div.tree{
|
||||
margin: 0 0 15px 0;
|
||||
line-height: 1.8em;
|
||||
|
@ -223,4 +229,4 @@ pre .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
|||
pre .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
||||
pre .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
||||
pre .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
||||
pre .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
||||
pre .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
||||
|
|
|
@ -63,7 +63,14 @@
|
|||
<!-- ======================================================================
|
||||
Snippet
|
||||
======================================================================= -->
|
||||
{% include "dpaste/snippet_pre.html" %}
|
||||
{% if snippet.lexer == 'text' %}
|
||||
<div class="snippet-rendered">
|
||||
{{ snippet.content|linebreaks }}
|
||||
</div>
|
||||
{% else %}
|
||||
{% include "dpaste/snippet_pre.html" %}
|
||||
{% endif %}
|
||||
|
||||
|
||||
<!-- ======================================================================
|
||||
Snippet Reply
|
||||
|
|
Loading…
Reference in a new issue