Finds lines with <h1>..<h6> tags. The pattern is adapted from the ruby one. Signed-off-by: Johan Herland <johan@xxxxxxxxxxx> --- On Wednesday 20 August 2008, Mike Hommey wrote: > On Wed, Aug 20, 2008 at 07:27:46PM +0200, Johan Herland wrote: > > Finds lines with <h1>..<h6> tags. The pattern is adapted from the > > ruby one. > Don't you want to catch <H1>...<H6> too ? Yes. Thanks. Have fun! ...Johan Documentation/gitattributes.txt | 2 ++ diff.c | 1 + 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Documentation/gitattributes.txt b/Documentation/gitattributes.txt index db16b0c..8bb05e6 100644 --- a/Documentation/gitattributes.txt +++ b/Documentation/gitattributes.txt @@ -320,6 +320,8 @@ patterns are available: - `tex` suitable for source code for LaTeX documents. +- `html` suitable for HTML/XHTML documents. + Performing a three-way merge ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/diff.c b/diff.c index a6c1432..9d4b961 100644 --- a/diff.c +++ b/diff.c @@ -1382,6 +1382,7 @@ static struct builtin_funcname_pattern { { "bibtex", "\\(@[a-zA-Z]\\{1,\\}[ \t]*{\\{0,1\\}[ \t]*[^ \t\"@',\\#}{~%]*\\).*$" }, { "tex", "^\\(\\\\\\(\\(sub\\)*section\\|chapter\\|part\\)\\*\\{0,1\\}{.*\\)$" }, { "ruby", "^\\s*\\(\\(class\\|module\\|def\\)\\s.*\\)$" }, + { "html", "^\\s*\\(<[Hh][1-6]\\s.*>.*\\)$" }, }; static const char *diff_funcname_pattern(struct diff_filespec *one) -- 1.6.0.96.g2fad1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html