Skip to content
This repository has been archived by the owner on Nov 8, 2017. It is now read-only.

XML tags are stripped. #30

Open
Profpatsch opened this issue Feb 4, 2014 · 9 comments
Open

XML tags are stripped. #30

Profpatsch opened this issue Feb 4, 2014 · 9 comments

Comments

@Profpatsch
Copy link

Paketverwaltung **Maven**

- IDE-agnostisch
- Dependency-Management

        <dependency>
            <groupId>edu.gmu.cs</groupId>
            <artifactId>mason</artifactId>
            <version>14.0</version>
        </dependency>

- einfaches deployment

displays as
screenshot

compared to
screenshot

@Profpatsch
Copy link
Author

The code looks like this

<pre><code class='prettyprint '><dependency>
    <groupId>edu.gmu.cs</groupId>
    <artifactId>mason</artifactId>
    <version>14.0</version>
</dependency>
</code></pre>

instead of this

        &lt;dependency&gt;
            &lt;groupId&gt;edu.gmu.cs&lt;/groupId&gt;
            &lt;artifactId&gt;mason&lt;/artifactId&gt;
            &lt;version&gt;14.0&lt;/version&gt;
        &lt;/dependency&gt;

@Profpatsch
Copy link
Author

Could resolve that by replacing < with <

        &lt;dependency>
            &lt;groupId>edu.gmu.cs&lt;/groupId>
            &lt;artifactId>mason&lt;/artifactId>
            &lt;version>14.0&lt;/version>
        &lt;/dependency>

Not a good solution, though.

@Profpatsch
Copy link
Author

Hm, I see.
Every < lets the code behind it disappear.

@rjcoelho
Copy link

rjcoelho commented Dec 4, 2014

Prbl is in ImpressRenderer's block_code/codespan that dont html escape (unlike Redcarpet::Render::HTML that does escape)

@Profpatsch
Copy link
Author

Can this be fixed?

egonSchiele added a commit that referenced this issue Dec 7, 2014
@egonSchiele
Copy link
Owner

Fixed in master. Please pull and try again. BTW, I am slowly going to transition to this project to abandonware. I don't use it anymore and don't have the time to maintain it. If you are interested in taking over as maintainer, please let me know!

@Profpatsch
Copy link
Author

@egonSchiele What do you use instead?

@egonSchiele
Copy link
Owner

I use mdpress when I need to, I just don't give very many talks :)

@Profpatsch
Copy link
Author

I guess that’s kind of ideal. :)

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants