mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2024-11-13 23:50:09 +00:00
e3109ae507
- adding docutils cmake module - adding rst2html conversion build step to our documentation folder - adding tipue search system - adding a python script to insert HTML navigation template and index HTML documentation contents - adding RST documentation content, images and temporary CSS styling
24 lines
592 B
JavaScript
24 lines
592 B
JavaScript
|
|
/*
|
|
Tipue Search 3.0
|
|
Copyright (c) 2013 Tipue
|
|
Tipue Search is released under the MIT License
|
|
http://www.tipue.com/search
|
|
*/
|
|
|
|
|
|
var tipuesearch_stop_words = ["and", "be", "by", "do", "for", "he", "how", "if", "is", "it", "my", "not", "of", "or", "the", "to", "up", "what", "when"];
|
|
|
|
var tipuesearch_replace = {"words": [
|
|
{"word": "tipua", replace_with: "tipue"},
|
|
{"word": "javscript", replace_with: "javascript"}
|
|
]};
|
|
|
|
var tipuesearch_stem = {"words": [
|
|
{"word": "e-mail", stem: "email"},
|
|
{"word": "javascript", stem: "script"},
|
|
{"word": "javascript", stem: "js"}
|
|
]};
|
|
|
|
|