Sto studiando YAML come sostituto di XML, ma sto riscontrando difficoltà quando si tratta di elementi contenenti testo scorrevole con elementi incorporati. Ad esempio, il seguente documento XML:
<text>
This is an example text, spanning multiple lines, and it has embedded elements
like <a p="value">this</a> and <b>this</b>. There is also a list:
<quote>
<text>The text of the quote, spanning multiple lines, and it has
embedded elements like <c p="value">this</c> and <b>this</b></text>
<author>The Author of this quote</author>
</quote>
Text continues here.
</text>
Non so come convertire gli elementi incorporati in YAML. La mia comprensione è che il segmento del documento XML di cui sopra si traduce in qualcosa di simile (ad eccezione degli elementi incorporati):
text: >
This is an example text, spanning multiple lines, and it has embedded
elements like <a p="value">this</a> and <b>this</b>. There is also a
list:
quote:
text: >
The text of the quote, spanning multiple lines,
and it has embedded elements like <c p="value">this</c>
and <b>this</b>
author: The Author of this quote
Text continues here.
Inoltre, il rientro non è necessario in alcuni punti?