1/*
2 This file is part of the syndication library
3 SPDX-FileCopyrightText: 2005 Frank Osterfeld <osterfeld@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7
8#ifndef SYNDICATION_RSS2_TOOLS_P_H
9#define SYNDICATION_RSS2_TOOLS_P_H
10
11class QString;
12template<class T>
13class QList;
14
15namespace Syndication
16{
17class ElementWrapper;
18
19namespace RSS2
20{
21/**
22 * @internal
23 * extracts encoded content from XHTML, content:encoded and friends
24 *
25 * @param parent the parent node, e.g. a channel or item element
26 * @return the content as HTML (see Item::content() for details)
27 */
28QString extractContent(const ElementWrapper &parent);
29
30} // RSS2
31} // Syndication
32
33#endif // SYNDICATION_RSS2_TOOLS_P_H
34

source code of syndication/src/rss2/tools_p.h