html.c (87fbaedf) | html.c (92929bf6) |
---|---|
1/* $OpenBSD: html.c,v 1.132 2019/09/05 13:34:55 schwarze Exp $ */ | 1/* $OpenBSD: html.c,v 1.133 2020/01/19 17:59:01 schwarze Exp $ */ |
2/* 3 * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> 4 * Copyright (c) 2011-2015, 2017-2019 Ingo Schwarze <schwarze@openbsd.org> 5 * 6 * Permission to use, copy, modify, and distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * --- 71 unchanged lines hidden (view full) --- 81 {"b", HTML_INPHRASE | HTML_TOPHRASE}, 82 {"cite", HTML_INPHRASE | HTML_TOPHRASE}, 83 {"code", HTML_INPHRASE | HTML_TOPHRASE}, 84 {"i", HTML_INPHRASE | HTML_TOPHRASE}, 85 {"small", HTML_INPHRASE | HTML_TOPHRASE}, 86 {"span", HTML_INPHRASE | HTML_TOPHRASE}, 87 {"var", HTML_INPHRASE | HTML_TOPHRASE}, 88 {"br", HTML_INPHRASE | HTML_NOSTACK | HTML_NLALL}, | 2/* 3 * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> 4 * Copyright (c) 2011-2015, 2017-2019 Ingo Schwarze <schwarze@openbsd.org> 5 * 6 * Permission to use, copy, modify, and distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * --- 71 unchanged lines hidden (view full) --- 81 {"b", HTML_INPHRASE | HTML_TOPHRASE}, 82 {"cite", HTML_INPHRASE | HTML_TOPHRASE}, 83 {"code", HTML_INPHRASE | HTML_TOPHRASE}, 84 {"i", HTML_INPHRASE | HTML_TOPHRASE}, 85 {"small", HTML_INPHRASE | HTML_TOPHRASE}, 86 {"span", HTML_INPHRASE | HTML_TOPHRASE}, 87 {"var", HTML_INPHRASE | HTML_TOPHRASE}, 88 {"br", HTML_INPHRASE | HTML_NOSTACK | HTML_NLALL}, |
89 {"mark", HTML_INPHRASE | HTML_NOSTACK }, |
|
89 {"math", HTML_INPHRASE | HTML_NLALL | HTML_INDENT}, 90 {"mrow", 0}, 91 {"mi", 0}, 92 {"mn", 0}, 93 {"mo", 0}, 94 {"msup", 0}, 95 {"msub", 0}, 96 {"msubsup", 0}, --- 890 unchanged lines hidden --- | 90 {"math", HTML_INPHRASE | HTML_NLALL | HTML_INDENT}, 91 {"mrow", 0}, 92 {"mi", 0}, 93 {"mn", 0}, 94 {"mo", 0}, 95 {"msup", 0}, 96 {"msub", 0}, 97 {"msubsup", 0}, --- 890 unchanged lines hidden --- |