Skip to content
/ WPLT Public

WTJ's personal log template. Example: https://jwt625.github.io/WPLT/template/template.html Click `Refresh MathJax` if equations in TeX is not rendered

License

Notifications You must be signed in to change notification settings

jwt625/WPLT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WPLT

WTJ's personal log template

This is my personal log template using HTML and javascript. Contents are mainly written in Markdown and are converted to HTML. TeX is also supported by MathJax. TODOs and course Info are formatted in JSON which is very easy to edit, and it's saved in todos.json and courses.json. Markdown and TeX can also be used in the content property for TODOs.

Screenshot

example

Usage

  1. Clone or download the repo
  2. Add or edit TODOs in the todos.json file. E.g., change the status of a TODO from todo to done.
  3. Edit the information about the courses in courses.json, the time table is generated automatically. Very easy to understand the information in the courses.json.
  4. Take notes about each courses in the corresponding MD file.

Dependencies

The above dependencies are already included in the project files and all the functionalities can work offline. You can find them in /src/ and do not need to worry about.

  • MathJax is used for rendering Tex/LaTeX. If you want to use it offline, you have to download and put it into src, and pointing the path to your MathJax.js in the html, i.e., change
<script src='https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script>

in the <head> environment to

<script type="text/javascript" src="path-to-your-MathJax-root/MathJax.js"></script>

You can still use it without changing anything if you have Internet connection.

Keyboard shortcuts

  • Shift: show/hide TODO
  • r: reload all
  • 1: reload TODO
  • 2: reload courses and notes
  • t: show TODO with status todo
  • d: show TODO with status done
  • u: show TODO with status undone
  • a: show TODO with all status
  • h: run code highlight

Possible issue

  • It's forbidden to read local files in browser due to security. This is highly possible the case if you open the html in your browser but no TODO appears. Hence for TODOs you can alternatively use the todos.js to save TODOs as a global variable and load the .js file instead (which is a dirty way). To load from local .json and .md files, you have to, for example, start chrome with option --allow-file-access-from-files, e.g., in cmd on Windows:
start chrome full\path\to\the\index.html --allow-file-access-from-files

to enable local file access for chrome.

Acknowledgement

About

WTJ's personal log template. Example: https://jwt625.github.io/WPLT/template/template.html Click `Refresh MathJax` if equations in TeX is not rendered

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published