speedata / publisher

speedata Publisher - a professional database Publishing system

Home Page:https://www.speedata.de/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lxpath attribute and br

pgundlach opened this issue · comments

<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"