mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
9ccda98e6e
Will break cygwin due to trivstring header. https://www.mail-archive.com/lyx-devel@lists.lyx.org/msg223056.html
47 lines
947 B
C++
47 lines
947 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file output_xhtml.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Richard Kimberly Heck
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef OUTPUT_XHTML_H
|
|
#define OUTPUT_XHTML_H
|
|
|
|
#include "LayoutEnums.h"
|
|
|
|
#include "xml.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
docstring fontToHtmlTag(xml::FontTypes type);
|
|
docstring fontToHtmlAttribute(xml::FontTypes type);
|
|
|
|
class Buffer;
|
|
class OutputParams;
|
|
class Text;
|
|
|
|
///
|
|
xml::FontTag xhtmlStartFontTag(xml::FontTypes type);
|
|
///
|
|
xml::EndFontTag xhtmlEndFontTag(xml::FontTypes type);
|
|
|
|
///
|
|
void xhtmlParagraphs(Text const & text,
|
|
Buffer const & buf,
|
|
XMLStream & xs,
|
|
OutputParams const & runparams);
|
|
|
|
/// \return a string appropriate for setting alignment in CSS
|
|
/// Does NOT return "justify" for "block"
|
|
std::string alignmentToCSS(LyXAlignment align);
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|