html2text.php 991 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /******************************************************************************
  3. * Copyright (c) 2010 Jevon Wright and others.
  4. * All rights reserved. This program and the accompanying materials
  5. * are made available under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution, and is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. *
  9. * or
  10. *
  11. * LGPL which is available at http://www.gnu.org/licenses/lgpl.html
  12. *
  13. *
  14. * Contributors:
  15. * Jevon Wright - initial API and implementation
  16. ****************************************************************************/
  17. /**
  18. * This file is available if you still want to use functions rather than
  19. * autoloading classes.
  20. */
  21. require_once(__DIR__ . "/src/Html2Text.php");
  22. require_once(__DIR__ . "/src/Html2TextException.php");
  23. function convert_html_to_text($html) {
  24. return Html2Text\Html2Text::convert($html);
  25. }
  26. function fix_newlines($text) {
  27. return Html2Text\Html2Text::fixNewlines($text);
  28. }