Use JQuery to add .table to every table element in order to use Bootstrap table style. Add doccumentation about this change
This commit is contained in:
parent
ca68c65f85
commit
e0ff0f5cdc
25
Vimwiki.wiki
25
Vimwiki.wiki
|
@ -1,10 +1,29 @@
|
||||||
= Vimwiki =
|
= Vimwiki =
|
||||||
|
|
||||||
== TODO ==
|
== TODO ==
|
||||||
* [ ] Commit to a repository
|
* [X] Commit to a repository
|
||||||
* [ ] Setup remote to host
|
* [ ] Setup remote to host
|
||||||
* [ ] Setup remote to automatically `:VimwikiAll2HTML` after it's been pushed to
|
* [ ] Setup remote to automatically `:VimwikiAll2HTML` after it's been pushed to
|
||||||
|
|
||||||
|
== Table tweaks ==
|
||||||
|
|
||||||
|
Tables without any styles are gross, so let's use the styles from Bootstrap. Problem is that Vimwiki doesn't provide a way to add a class to a table element, so we'll do it with JQuery:
|
||||||
|
|
||||||
|
{{{class="prettyprint"
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
$("table").addClass("table table-condensed table-hover");
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
}}}
|
||||||
|
|
||||||
|
This adds `.table`, `.table-condensed`, and `.table-hover` classes to every table element in the whole document. Don't see why it should be any other way for the moment.
|
||||||
|
|
||||||
|
=== References ===
|
||||||
|
|
||||||
|
http://stackoverflow.com/a/39897883
|
||||||
|
http://www.w3schools.com/jquery/jquery_syntax.asp
|
||||||
|
|
||||||
== HTML Checkboxes ==
|
== HTML Checkboxes ==
|
||||||
|
|
||||||
By default, there is no difference between how a non-checkbox list item, unchecked list item, and a checked list item are displayed when exported to HTML.
|
By default, there is no difference between how a non-checkbox list item, unchecked list item, and a checked list item are displayed when exported to HTML.
|
||||||
|
@ -13,8 +32,8 @@ There are 5 states of a checkbox, 0-4, and they each represent a different level
|
||||||
|
|
||||||
Checkbox states:
|
Checkbox states:
|
||||||
|
|
||||||
| # | % Complete | li class | Unicode character | Escape sequence | HTML code |
|
| State # | % Complete | li class | Unicode character | Escape sequence | HTML code |
|
||||||
|---|------------|----------|-------------------|-----------------|------------|
|
|---------|------------|----------|-------------------|-----------------|------------|
|
||||||
| 0 | 0% | `done0` | ◯ | `\u25EF` | `◯` |
|
| 0 | 0% | `done0` | ◯ | `\u25EF` | `◯` |
|
||||||
| 1 | 1-33% | `done1` | ◔ | `\u25D4` | `◔` |
|
| 1 | 1-33% | `done1` | ◔ | `\u25D4` | `◔` |
|
||||||
| 2 | 34-66% | `done2` | ◑ | `\u25D1` | `◑` |
|
| 2 | 34-66% | `done2` | ◑ | `\u25D1` | `◑` |
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
||||||
|
|
||||||
<!--bootstrap stuff start-->
|
<!--bootstrap stuff start-->
|
||||||
<!-- Latest compiled and minified CSS -->
|
<!-- Latest compiled and minified CSS -->
|
||||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||||
|
@ -26,6 +28,13 @@
|
||||||
<!--Google Syntax Highlighting-->
|
<!--Google Syntax Highlighting-->
|
||||||
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js?skin=sons-of-obsidian"></script>
|
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js?skin=sons-of-obsidian"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
$("table").addClass("table table-condensed table-hover");
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
<!--Checkbox list tweaks-->
|
<!--Checkbox list tweaks-->
|
||||||
<style>
|
<style>
|
||||||
ul li.done0:before {content: '\25EF';}
|
ul li.done0:before {content: '\25EF';}
|
||||||
|
@ -36,6 +45,8 @@
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue