We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47e307e commit 8b9d750Copy full SHA for 8b9d750
fluent/syntax/ftlstream.py
@@ -239,7 +239,9 @@ def skip_to_next_entry_start(self):
239
if self.current_is('\n') and not self.peek_char_is('\n'):
240
self.next()
241
242
- if self.ch is None or self.is_message_id_start() or \
+ if self.ch is None or \
243
+ self.is_message_id_start() or \
244
+ self.current_is('#') or \
245
(self.current_is('/') and self.peek_char_is('/')) or \
246
(self.current_is('[') and self.peek_char_is('[')):
247
break
0 commit comments