version 1.24, 2010/06/19 20:46:27 |
version 1.27, 2010/07/23 00:08:57 |
|
|
/* $Id$ */ |
/* $Id$ */ |
/* |
/* |
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv> |
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> |
* |
* |
* Permission to use, copy, modify, and distribute this software for any |
* Permission to use, copy, modify, and distribute this software for any |
* purpose with or without fee is hereby granted, provided that the above |
* purpose with or without fee is hereby granted, provided that the above |
|
|
struct html { |
struct html { |
int flags; |
int flags; |
#define HTML_NOSPACE (1 << 0) |
#define HTML_NOSPACE (1 << 0) |
#define HTML_IGNDELIM (1 << 2) |
#define HTML_IGNDELIM (1 << 1) |
|
#define HTML_KEEP (1 << 2) |
|
#define HTML_PREKEEP (1 << 3) |
|
#define HTML_NONOSPACE (1 << 4) |
struct tagq tags; |
struct tagq tags; |
struct ordq ords; |
struct ordq ords; |
void *symtab; |
void *symtab; |