OSDN Git Service

Merge branch 'master' into master
[winmerge-jp/winmerge-jp.git] / Filters / XML_html.flt
1 ## This is a directory/file filter for WinMerge
2 ## This filter lets through only files XML/HTML developer cares about
3 name: XML/HTML Devel
4 desc: Lets through only files XML/HTML developer cares about
5
6 ## This is an exclusive filter
7 ## (it lets through only matching files)
8 def: exclude
9
10 ## Filters for filenames begin with f:
11 ## Filters for directories begin with d:
12 ## (Inline comments begin with " ##" and extend to the end of the line)
13
14 f: \.xml$ ## XML files
15 f: \.xslt$
16 f: \.dtd$
17 f: \.html$ ## HTML files
18 f: \.htm$
19 f: \.css$ ## CSS style files
20 f: \.gif$ ## Pictures
21 f: \.bmp$
22 f: \.jpg$
23 f: \.png$
24 f: \.js$ ## Java-script
25
26 d: \\*$ ## Subdirectories
27