18 lines
448 B
Plaintext
18 lines
448 B
Plaintext
{{ each content paragraph }}
|
|
{{ if paragraph.type == 'paragraph' }}
|
|
<p>
|
|
{{ each paragraph.children child }}
|
|
{{ if child.text }}
|
|
<span {{ if child.color }}style="color: {{ child.color }}"{{ /if }}>
|
|
{{ if child.bold }}<strong>{{ /if }}
|
|
{{ child.text }}
|
|
{{ if child.bold }}</strong>{{ /if }}
|
|
</span>
|
|
{{ /if }}
|
|
{{ if child.type == 'emotion' }}
|
|
<img src="https://image.lkong.com/bq/em{{ child.id }}.gif">
|
|
{{ /if }}
|
|
{{ /each }}
|
|
</p>
|
|
{{ /if }}
|
|
{{ /each }} |