speedata / publisher

speedata Publisher - a professional database Publishing system
https://www.speedata.de/
GNU Affero General Public License v3.0
292 stars 36 forks source link

lxpath attribute and br #556

Closed pgundlach closed 5 months ago

pgundlach commented 5 months ago
<Layout xmlns="urn:speedata.de:2009/publisher/en"
    xmlns:sd="urn:speedata:2009/publisher/functions/en">

    <Pageformat height="5cm" width="7cm"></Pageformat>
    <Record element="data">
      <SetVariable variable="hello" select="@hello"></SetVariable>
        <PlaceObject>
            <Textblock>
                <Paragraph>
                    <Value select="$hello"></Value>
                    <Br></Br>
                    <Value>world</Value>
                </Paragraph>
            </Textblock>
        </PlaceObject>
    </Record>
</Layout>

data.xml:

<data hello="hello"></data>

returns "helloworld" instead of "hello\nworld"