summaryrefslogtreecommitdiff
path: root/src/generators/latex_g.h
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@fastmail.net>2011-03-11 16:53:04 +0100
committerGrégoire Duchêne <gduchene@fastmail.net>2011-03-11 16:57:33 +0100
commite837682344d6edd2012d1ab2fd30d77ffa486593 (patch)
tree4ce2a33d6bd68d1e88dc57cb6b446b75c940da93 /src/generators/latex_g.h
parent7acf15c1f0623f157e6abdf4a9bff5b050add967 (diff)
Paragraph element added.
This element will allow me to add more cool things like real paragraphs, lists, or quotation blocks. Please check the MDOWN file for an exhaustive list of blocks.
Diffstat (limited to 'src/generators/latex_g.h')
-rw-r--r--src/generators/latex_g.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/generators/latex_g.h b/src/generators/latex_g.h
index 29f1835..260e288 100644
--- a/src/generators/latex_g.h
+++ b/src/generators/latex_g.h
@@ -17,13 +17,13 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define _MPPDOWN_LATEX_G
#include <boost/spirit/include/karma.hpp>
#include "../elements.h"
-#include "latex/text_g.h"
+#include "latex/paragraph_g.h"
namespace ka = boost::spirit::karma;
struct latex_g : ka::grammar<oiterator, document_t()> {
ka::rule<oiterator, document_t()> latex_;
- latex::text_g text_;
+ latex::paragraph_g paragraph_;
latex_g();
};