-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathhamlish_jinja.py
927 lines (632 loc) · 26.3 KB
/
hamlish_jinja.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
# -*- coding: utf-8 -*-
#
# Copyright: (c) 2012 by Per Myren.
# License: BSD, see LICENSE for more details.
#
import re
import os.path
from jinja2 import TemplateSyntaxError, nodes
from jinja2.ext import Extension
__version__ = '0.3.4-dev'
begin_tag_rx = r'\{%\-?\s*haml.*?%\}'
end_tag_rx = r'\{%\-?\s*endhaml\s*\-?%\}'
begin_tag_m = re.compile(begin_tag_rx)
end_tag_m = re.compile(end_tag_rx)
class HamlishExtension(Extension):
def __init__(self, environment):
super(HamlishExtension, self).__init__(environment)
environment.extend(
hamlish_mode='compact',
hamlish_file_extensions=('.haml',),
hamlish_indent_string=' ',
hamlish_newline_string='\n',
hamlish_debug=False,
hamlish_enable_div_shortcut=False,
hamlish_from_string=self._from_string,
hamlish_filters=None,
)
def preprocess(self, source, name, filename=None):
if name is None or os.path.splitext(name)[1] not in \
self.environment.hamlish_file_extensions:
return source
h = self.get_preprocessor(self.environment.hamlish_mode)
try:
return h.convert_source(source)
except TemplateIndentationError as e:
raise TemplateSyntaxError(e.message, e.lineno, name=name, filename=filename)
except TemplateSyntaxError as e:
raise TemplateSyntaxError(e.message, e.lineno, name=name, filename=filename)
def get_preprocessor(self, mode):
placeholders = {
'block_start_string': self.environment.block_start_string,
'block_end_string': self.environment.block_end_string,
'variable_start_string': self.environment.variable_start_string,
'variable_end_string': self.environment.variable_end_string}
if mode == 'compact':
output = Output(
indent_string='',
newline_string='',
**placeholders)
elif mode == 'debug':
output = Output(
indent_string=' ',
newline_string='\n',
debug=True,
**placeholders)
else:
output = Output(
indent_string=self.environment.hamlish_indent_string,
newline_string=self.environment.hamlish_newline_string,
debug=self.environment.hamlish_debug,
**placeholders)
return Hamlish(output, self.environment.hamlish_enable_div_shortcut,
self.environment.hamlish_filters)
def _from_string(self, source, globals=None, template_class=None):
env = self.environment
globals = env.make_globals(globals)
cls = template_class or env.template_class
template_name = 'hamlish_from_string'
if env.hamlish_file_extensions:
template_name += env.hamlish_file_extensions[0]
else:
template_name += '.haml'
return cls.from_code(env, env.compile(source, template_name), globals, None)
class HamlishTagExtension(HamlishExtension):
tags = set(['haml'])
def _get_lineno(self, source):
matches = re.finditer(r"\n", source)
if matches:
return len(tuple(matches))
return 0
def parse(self, parser):
haml_data = parser.parse_statements(['name:endhaml'])
parser.stream.expect('name:endhaml')
return [
nodes.Output([haml_data])
]
def preprocess(self, source, name, filename = None):
ret_source = ''
start_pos = 0
while True:
tag_match = begin_tag_m.search(source, start_pos)
if tag_match:
end_tag = end_tag_m.search(source, tag_match.end())
if not end_tag:
raise TemplateSyntaxError('Expecting "endhaml" tag', self._get_lineno(source[:start_pos]))
haml_source = source[tag_match.end() : end_tag.start()]
h = self.get_preprocessor(self.environment.hamlish_mode)
try:
ret_source += source[start_pos : tag_match.start()] + h.convert_source(haml_source)
except TemplateIndentationError as e:
raise TemplateSyntaxError(e.message, e.lineno, name = name, filename = filename)
except TemplateSyntaxError as e:
raise TemplateSyntaxError(e.message, e.lineno, name = name, filename = filename)
start_pos = end_tag.end()
else:
ret_source += source[start_pos:]
break
return ret_source
class TemplateIndentationError(TemplateSyntaxError):
pass
class Hamlish(object):
INLINE_DATA_SEP = ' << '
SELF_CLOSING_TAG = '.'
JINJA_TAG = '-'
JINJA_VARIABLE = '='
HTML_TAG = '%'
ESCAPE_LINE = '\\'
PREFORMATED_LINE = '|'
CONTINUED_LINE = '\\'
ID_SHORTCUT = '#'
CLASS_SHORTCUT = '.'
LINE_COMMENT = ';'
NESTED_TAGS_SEP = ' -> '
FILTER_START = ':'
#Which haml tags that can contain inline data
_inline_data_tags = set([HTML_TAG, JINJA_TAG])
#Which html tags that can start a line with nested tags
_nested_tags = set([HTML_TAG, JINJA_TAG])
_div_shorcut_re = re.compile(r'^(\s*)([#\.])', re.M)
_self_closing_jinja_tags = set([
'include', 'extends', 'import', 'set', 'from', 'do', 'break',
'continue'
])
_self_closing_html_tags = set([
'br', 'img', 'link', 'hr', 'meta', 'input'
])
_extended_tags = {
'else' : set(['if', 'for']),
'elif' : set(['if']),
'pluralize' : set(['trans'])
}
def __init__(self, output, use_div_shortcut=False, filters=None):
self.output = output
self._use_div_shortcut = use_div_shortcut
self._filters = filters or {}
def convert_source(self, source):
tree = self.get_haml_tree(source)
return self.output.create(tree)
def get_haml_tree(self, source):
blocks = self._get_haml_tree(source)
return self._create_extended_jinja_tags(blocks)
def _get_haml_tree(self, source):
source_lines = self._get_source_lines(source)
root = Node()
# contains always atleast one element
block_stack = [root]
# stack for current indent level
indent_stack = [-1]
for lineno, line in enumerate(source_lines, 1):
if not line.strip():
block_stack[-1].add(EmptyLine())
continue
indent = 0
m = re.match(r'^(\s+)', line)
if m:
indent = m.group(1)
if ' ' in indent and '\t' in indent:
raise TemplateIndentationError('Mixed tabs and spaces', lineno)
indent = len(indent)
if indent > indent_stack[-1]:
indent_stack.append(indent)
else:
while indent < indent_stack[-1]:
indent_stack.pop()
block_stack.pop()
block_stack.pop()
if indent != indent_stack[-1]:
raise TemplateIndentationError('Unindent does not match any outer indentation level', lineno)
node = self._parse_line(lineno, line.strip())
if not block_stack[-1].can_have_children():
if isinstance(node, InlineData):
raise TemplateSyntaxError('Inline Data Node can\'t contain child nodes', lineno)
else:
raise TemplateSyntaxError('Self closing tag can\'t contain child nodes', lineno)
block_stack[-1].add(node)
block_stack.append(node)
return root.children
def _get_source_lines(self, source):
if self._use_div_shortcut:
source = self._div_shorcut_re.sub(r'\1%div\2', source)
lines = []
# Lines that end with CONTINUED_LINE are merged with the next line
continued_line = []
source_lines = self._extract_filter_blocks(source)
for line in source_lines:
line = line.rstrip()
if line and line.lstrip()[0] == self.LINE_COMMENT:
#Add empty line for debug mode
lines.append('')
elif line and line[-1] == self.CONTINUED_LINE:
#If its not the first continued line we strip
#the whitespace from the beginning
if continued_line:
line = line.lstrip()
#Strip of the CONTINUED_LINE character and save for later
continued_line.append(line[:-1])
elif continued_line:
#If we have a continued line we join them together and add
#them to the other lines
continued_line.append(line.strip())
lines.append(''.join(continued_line))
#Add empty lines for debug mode
lines.extend(['']*(len(continued_line)-1))
#Reset
continued_line = []
else:
lines.append(line)
return lines
def _extract_filter_blocks(self, source):
lines = []
filter_block = None
filter_start_indent = None #The indent level of the filter start tag
filter_block_indent = None #The indent level of the first content in the block
for line in source.rstrip().split('\n'):
stripped_line = line.lstrip()
if filter_block is not None:
if not stripped_line:
filter_block.append(stripped_line) #empty line
continue
# Find the block indent level if this is the first non
# whitespace line after the start of the block
if filter_block_indent is None:
filter_block_indent = line[:len(line) - len(stripped_line)]
# We are inside the block as long as the lines are at least
# indented with the filter_block_indent level.
# If an empty filter block is defined, filter_block_indent may
# not be correct, because the first non-whitespace line which
# is used to get the indent level may already be outside the
# block. So if the line starts with both filter_start_indent
# and the filter_block_indent and they are not equal we should
# be inside the block.
if line.startswith(filter_block_indent) and line.startswith(filter_start_indent) and filter_block_indent != filter_start_indent:
filter_block.append(line[len(filter_block_indent):])
continue
else:
lines.append('\n'.join(filter_block))
filter_block = None
filter_block_indent = None
if not stripped_line: # Whit space only
lines.append(line) # We just leave the whitespace as it is and let it be handled elsewhere
elif stripped_line.startswith(self.FILTER_START) and self._filter_is_defined(stripped_line):
# A known filter was found so we start a to collect the filter block
filter_block = [line.rstrip()]
filter_start_indent = line[:len(line) - len(stripped_line)]
else:
lines.append(line)
if filter_block is not None:
lines.append('\n'.join(filter_block))
return lines
def _parse_line(self, lineno, line):
inline_data = None
if self._has_inline_data(line):
line, inline_data = self._parse_inline_data(line)
if self._has_nested_tags(line):
node = self._parse_nested_tags(lineno, line)
else:
node = self._parse_node(lineno, line)
if inline_data is not None:
if not node.can_have_children():
raise TemplateSyntaxError('Node can\'t contain inline data', lineno)
elif isinstance(node, NestedTags) and isinstance(node.nodes[-1], TextNode):
raise TemplateSyntaxError('TextNode can\'t contain inline data', lineno)
return InlineData(node, inline_data)
return node
def _parse_node(self, lineno, line):
if line.startswith(self.HTML_TAG):
return self._parse_html(lineno, line)
elif line.startswith(self.JINJA_TAG):
return self._parse_jinja(lineno, line)
elif line.startswith(self.PREFORMATED_LINE):
return PreformatedText(line[1:])
elif line.startswith(self.JINJA_VARIABLE):
return JinjaVariable(line[1:])
elif line.startswith(self.FILTER_START) and self._filter_is_defined(line.split('\n')[0]):
return self._create_filter_node(lineno, line)
elif line.startswith(self.ESCAPE_LINE):
return TextNode(line[1:])
return TextNode(line)
def _filter_is_defined(self, line):
if line[1:].strip() in self._filters:
return True
return False
# The filter block data should be a single line string
# that contains both the start tag definion and the content
# of the block.
# ie. :testfilter\nblock content\nblock content\n
def _create_filter_node(self, lineno, filter_block_data):
data = filter_block_data.split('\n')
name = data[0].strip()[1:]
content = '\n'.join(data[1:])
if not content.strip():
raise TemplateSyntaxError('Empty filter block (%s)' % name, lineno)
return FilterNode(self._filters[name], content)
def _has_inline_data(self, line):
if line[0] not in self._inline_data_tags:
return False
return self.INLINE_DATA_SEP in line
def _parse_inline_data(self, line):
data = line.split(self.INLINE_DATA_SEP, 1)
return data[0].rstrip(), data[1].lstrip()
def _has_nested_tags(self, line):
if line[0] not in self._nested_tags:
return False
return self.NESTED_TAGS_SEP in line
def _parse_nested_tags(self, lineno, line):
tags = line.split(self.NESTED_TAGS_SEP)
nodes = []
node_lines = [] #Used to make a nicer error message
for line in [x.strip() for x in tags]:
node = self._parse_node(lineno, line)
if nodes and not nodes[-1].can_have_children():
raise TemplateSyntaxError('Node "%s" can\'t contain children' % node_lines[-1], lineno)
nodes.append(node)
node_lines.append(line)
return NestedTags(nodes)
def _parse_html(self, lineno, line):
m = re.match('^(\w+)(.*)$', line[1:])
if m is None:
raise TemplateSyntaxError(
'Expected html tag, got "%s".' % line, lineno)
tag = m.group(1)
attrs = m.group(2)
self_closing = False
if attrs and attrs[-1] == self.SELF_CLOSING_TAG:
self_closing = True
attrs = attrs[:-1].rstrip()
elif tag in self._self_closing_html_tags:
self_closing = True
if attrs.startswith(self.ID_SHORTCUT) or \
attrs.startswith(self.CLASS_SHORTCUT):
attrs = self._parse_shortcut_attributes(attrs)
elif attrs and attrs[0] == '(' and attrs[-1] == ')':
attrs = ' ' + attrs[1:-1]
if self_closing:
return SelfClosingHTMLTag(tag, attrs)
return HTMLTag(tag, attrs)
def _parse_shortcut_attributes(self, attrs):
orig_attrs = attrs
value = attrs
extra_attrs = ''
# Extract extra attrs from parentheses, otherwise, split on first space
m = re.match(r'^([\.#0-9A-Za-z\-]+)\((.+?)\)$', value)
if m:
value, extra_attrs = m.group(1), m.group(2)
elif ' ' in value:
value, extra_attrs = attrs.split(' ', 1)
parts = re.split(r'([\.#])', value)
#The first part should be empty
parts = parts[1:]
#Now parts should be a list like this ['.', 'value', '#', 'value']
#So we take every second element starting from the first
#and every second element starting from the second and zip them
#together.
parts = list(zip(parts[0::2], parts[1::2]))
classes = []
ids = []
for type_, value in parts:
if not value:
#ignore empty values
continue
if type_ == self.CLASS_SHORTCUT:
classes.append(value)
else:
ids.append(value)
#We make the class and id the same order as in the template
if orig_attrs.startswith(self.CLASS_SHORTCUT):
attrs = (('class', classes), ('id', ids))
else:
attrs = (('id', ids), ('class', classes))
rv = ' '.join('%s="%s"' % (k, ' '.join(v))
for k, v in attrs if v)
if extra_attrs:
rv += ' ' + extra_attrs
if rv:
return ' ' + rv
return rv
def _parse_jinja(self, lineno, line):
m = re.match('^(\w+)(.*)$', line[1:])
if m is None:
raise TemplateSyntaxError(
'Expected jinja tag, got "%s".' % line, lineno)
tag = m.group(1)
attrs = m.group(2)
if tag in self._self_closing_jinja_tags:
return SelfClosingJinjaTag(tag, attrs)
elif tag in self._extended_tags:
return ExtendingJinjaTag(tag, attrs)
return JinjaTag(tag, attrs)
def _create_extended_jinja_tags(self, nodes):
"""Loops through the nodes and looks for special jinja tags that
contains more than one tag but only one ending tag."""
jinja_a = None
jinja_b = None
ext_node = None
ext_nodes = []
for node in nodes:
if isinstance(node, EmptyLine):
continue
if node.has_children():
node.children = self._create_extended_jinja_tags(node.children)
if not isinstance(node, JinjaTag):
jinja_a = None
continue
if jinja_a is None or (
node.tag_name in self._extended_tags and jinja_a.tag_name not in self._extended_tags[node.tag_name]):
jinja_a = node
continue
if node.tag_name in self._extended_tags and \
jinja_a.tag_name in self._extended_tags[node.tag_name]:
if ext_node is None:
ext_node = ExtendedJinjaTag()
ext_node.add(jinja_a)
ext_nodes.append(ext_node)
ext_node.add(node)
else:
ext_node = None
jinja_a = node
#replace the nodes with the new extended node
for node in ext_nodes:
nodes.insert(nodes.index(node.children[0]), node)
index = nodes.index(node.children[0])
del nodes[index:index+len(node.children)]
return nodes
class Node(object):
def __init__(self):
self.children = []
def has_children(self):
"returns False if children is empty or contains only empty lines else True."
return bool([x for x in self.children if not isinstance(x, EmptyLine)])
def add(self, child):
self.children.append(child)
def can_have_children(self):
return True
def write(self, output, indent):
pass
class EmptyLine(Node):
"Used in debug mode."
class HTMLTag(Node):
def __init__(self, tag_name, attrs):
self.tag_name = tag_name
self.attrs = attrs
super(HTMLTag, self).__init__()
class JinjaTag(Node):
def __init__(self, tag_name, attrs):
self.tag_name = tag_name
self.attrs = attrs
super(JinjaTag, self).__init__()
class ExtendedJinjaTag(Node):
pass
class TextNode(Node):
def __init__(self, data):
self.data = data
super(TextNode, self).__init__()
class FilterNode(TextNode):
def __init__(self, filter, data):
self.filter = filter
self._data = data
super(TextNode, self).__init__()
def has_children(self):
return False;
@property
def data(self):
return self.filter(self._data)
class InlineData(Node):
def __init__(self, node, data):
self.node = node
self.data = data
super(InlineData, self).__init__()
def can_have_children(self):
return False
class NestedTags(Node):
def __init__(self, nodes):
self.nodes = nodes
super(NestedTags, self).__init__()
def can_have_children(self):
#check if last node can have children
return self.nodes[-1].can_have_children()
class PreformatedText(TextNode):
pass
class SelfClosingTag(object):
pass
class SelfClosingJinjaTag(JinjaTag, SelfClosingTag):
def can_have_children(self):
return False
class SelfClosingHTMLTag(HTMLTag, SelfClosingTag):
def can_have_children(self):
return False
class JinjaVariable(TextNode):
pass
class ExtendingJinjaTag(JinjaTag, SelfClosingTag):
pass
class Output(object):
def __init__(self,
indent_string=' ',
newline_string='\n',
debug=False,
block_start_string='{%',
block_end_string='%}',
variable_start_string='{{',
variable_end_string='}}'):
self._indent = indent_string
self._newline = newline_string
self.debug = debug
self.buffer = []
self.block_start_string = block_start_string
self.block_end_string = block_end_string
self.variable_start_string = variable_start_string
self.variable_end_string = variable_end_string
def reset(self):
self.buffer = []
def create(self, nodes):
self.reset()
self._create(nodes)
if self.debug:
return ''.join(self.buffer)
return ''.join(self.buffer).strip()
def write_self_closing_html(self, node):
self.write('<%s%s />' % (node.tag_name, node.attrs))
def write_open_html(self, node):
self.write('<%s%s>' % (node.tag_name, node.attrs))
def write_close_html(self, node):
self.write('</%s>' % node.tag_name)
def write_open_jinja(self, node):
self.write('%s %s%s %s' % (
self.block_start_string,
node.tag_name,
node.attrs,
self.block_end_string))
def write_close_jinja(self, node):
self.write('%s end%s %s' % (
self.block_start_string,
node.tag_name,
self.block_end_string))
def write_jinja_variable(self, node):
self.write('%s %s %s' % (
self.variable_start_string,
node.data,
self.variable_end_string))
def write_newline(self):
self.write(self._newline)
def write_indent(self, depth):
self.write(self._indent * depth)
def write(self, data):
self.buffer.append(data)
def write_open_node(self, node):
if isinstance(node, JinjaTag):
self.write_open_jinja(node)
elif isinstance(node, NestedTags):
for n in node.nodes:
self.write_open_node(n)
elif isinstance(node, SelfClosingHTMLTag):
self.write_self_closing_html(node)
elif isinstance(node, HTMLTag):
self.write_open_html(node)
elif isinstance(node, JinjaVariable):
self.write_jinja_variable(node)
elif isinstance(node, PreformatedText):
self.write(node.data)
elif isinstance(node, TextNode):
self.write(node.data)
def write_close_node(self, node):
if isinstance(node, SelfClosingTag):
return
elif isinstance(node, NestedTags):
for n in reversed(node.nodes):
self.write_close_node(n)
elif isinstance(node, JinjaTag):
self.write_close_jinja(node)
elif isinstance(node, HTMLTag):
self.write_close_html(node)
elif isinstance(node, ExtendedJinjaTag):
self.write_close_node(node.children[0])
def _create(self, nodes, depth=0):
for node in nodes:
if isinstance(node, EmptyLine):
if self.debug:
self.write_newline()
continue
if isinstance(node, InlineData):
self.write_indent(depth)
self.write_open_node(node.node)
self.write(node.data)
self.write_close_node(node.node)
self.write_newline()
elif isinstance(node, ExtendedJinjaTag):
for n in node.children:
self.write_indent(depth)
self.write_open_node(n)
self.write_newline()
if n.has_children():
self._create(n.children, depth+1)
else:
if not isinstance(node, (PreformatedText, FilterNode)):
self.write_indent(depth)
self.write_open_node(node)
if isinstance(node, SelfClosingTag):
self.write_newline()
elif isinstance(node, PreformatedText):
self.write('\n')
elif isinstance(node, (JinjaTag, HTMLTag, NestedTags)) and not node.has_children():
pass
else:
self.write_newline()
if node.children and not isinstance(node, ExtendedJinjaTag):
self._create(node.children, depth+1)
if self.debug:
#Pop off all whitespace above this end tag
#and save it to be appended after the end tag.
prev = []
while self.buffer[-1].isspace():
prev.append(self.buffer.pop())
if isinstance(node, SelfClosingTag):
pass
elif isinstance(node, (JinjaTag, HTMLTag, ExtendedJinjaTag, NestedTags)):
if not (self.debug or (isinstance(node, NestedTags) and not node.has_children())):
self.write_indent(depth)
self.write_close_node(node)
if not self.debug or (isinstance(node, NestedTags) and not node.has_children()):
self.write_newline()
if self.debug:
#readd the whitespace after the end tag
self.write(''.join(prev))