diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-09-11 16:56:27 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-09-11 16:56:27 -0700 |
commit | 3a1aad07d61411f634e86f905babd6fbbac2eae1 (patch) | |
tree | f343fc427c0c791823a39a482dc3d1cd35d34253 /ext/bg/settings.html | |
parent | 65b679caeb7ae7261ea6f2ba76d1b14ff1d68c5c (diff) | |
parent | 2eb85cb835a4aece7839eba25c0030e9eb186f85 (diff) |
Merge branch 'master' into firefox-amo
Diffstat (limited to 'ext/bg/settings.html')
-rw-r--r-- | ext/bg/settings.html | 55 |
1 files changed, 33 insertions, 22 deletions
diff --git a/ext/bg/settings.html b/ext/bg/settings.html index 8798aeb1..0a5c205c 100644 --- a/ext/bg/settings.html +++ b/ext/bg/settings.html @@ -8,8 +8,7 @@ <style> #anki-spinner, #anki-general, #anki-error, #dict-spinner, #dict-error, #dict-warning, #dict-purge-progress, #dict-import-progress, - #debug, - .options-advanced { + #debug, .options-advanced { display: none; } @@ -19,6 +18,12 @@ border-right: 1px #ddd solid; padding: 10px; } + + #field-templates { + font-family: monospace; + overflow-x: hidden; + white-space: pre; + } </style> </head> <body> @@ -175,10 +180,6 @@ </div> <div id="anki-general"> - <div class="checkbox options-advanced"> - <label><input type="checkbox" id="generate-html-cards"> Generate HTML cards</label> - </div> - <div class="form-group"> <label for="card-tags">Card tags (comma or space separated)</label> <input type="text" id="card-tags" class="form-control"> @@ -246,28 +247,38 @@ </table> </div> </div> + + <div class="options-advanced"> + <p class="help-block"> + Fields are formatted using the <a href="http://handlebarsjs.com/">Handlebars.js</a> template rendering + engine. Advanced users can modify these templates for ultimate control of what information gets included in + their Anki cards. If you encounter problems with your changes you can always <a href="#" id="field-templates-reset">reset to default</a> + template settings. + </p> + <textarea class="form-control" rows="10" id="field-templates"></textarea> + </div> </div> </div> + </div> - <div> - <h3>Support Development</h3> - - <p class="help-block"> - Yomichan is provided to you <em>completely free</em> of charge. Unlike numerous other "free" services, you are not - shown ads, pestered with "offers", or have your browser usage information analyzed and sold to third parties. - </p> - <p class="help-block"> - If you find Yomichan useful, please consider making a small donation as a way to show your appreciation for the - countless hours that I have devoted to this extension. - </p> - <p> - <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4DBTN9A3CUAFN" target="_blank"><img src="/bg/img/paypal.gif" alt></a> - </p> - </div> + <div> + <h3>Support Development</h3> - <pre id="debug"></pre> + <p class="help-block"> + Yomichan is provided to you <em>completely free</em> of charge. Unlike numerous other "free" services, you are not + shown ads, pestered with "offers", or have your browser usage information analyzed and sold to third parties. + </p> + <p class="help-block"> + If you find Yomichan useful, please consider making a small donation as a way to show your appreciation for the + countless hours that I have devoted to this extension. + </p> + <p> + <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4DBTN9A3CUAFN" target="_blank"><img src="/bg/img/paypal.gif" alt></a> + </p> </div> + <pre id="debug"></pre> + <div class="pull-right"> <small><a href="https://foosoft.net/projects/yomichan/" target="_blank">Homepage</a> • <a href="legal.html">Legal</a></small> </div> |