Convert XHTML to Markdown using PHP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • mseiferle@gmail.com

    Convert XHTML to Markdown using PHP

    I was searching around the web for a while now und could not find any
    any implementation going that way, my intention is to convert html
    newsletters to markdown Syntax when sending them to people that only
    want plaintext. Any Ideas or suggestions?

  • ZeldorBlat

    #2
    Re: Convert XHTML to Markdown using PHP

    On Apr 15, 9:08 am, mseife...@gmail .com wrote:
    I was searching around the web for a while now und could not find any
    any implementation going that way, my intention is to convert html
    newsletters to markdown Syntax when sending them to people that only
    want plaintext. Any Ideas or suggestions?
    Replace all <br>'s with newlines (\n) then use strip_tags().

    Comment

    • Toby A Inkster

      #3
      Re: Convert XHTML to Markdown using PHP

      ZeldorBlat wrote:
      Replace all <br>'s with newlines (\n) then use strip_tags().
      Errr...

      <p>Pen</p><p>island</p>

      --
      Toby A Inkster BSc (Hons) ARCS
      Contact Me ~ http://tobyinkster.co.uk/contact
      Geek of ~ HTML/SQL/Perl/PHP/Python*/Apache/Linux

      * = I'm getting there!

      Comment

      Working...