blob: f3afbef6dd957df3320f40da4bbffb48bf751fe3 [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001<?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/**
19 * This file is available if you still want to use functions rather than
20 * autoloading classes.
21 */
22
23require_once(__DIR__ . "/src/Html2Text.php");
24require_once(__DIR__ . "/src/Html2TextException.php");
25
26function convert_html_to_text($html) {
27 return Html2Text\Html2Text::convert($html);
28}
29
30function fix_newlines($text) {
31 return Html2Text\Html2Text::fixNewlines($text);
32}