1
0
mirror of https://github.com/writeas/writefreely synced 2025-01-22 03:35:47 +01:00
writefreely/static/js
2021-02-13 13:27:15 +01:00
..
highlightjs
mathjax
ace.js
h.js Merge branch 'develop' into wysiwyg 2020-09-09 09:53:38 -04:00
highlight.min.js
localdate.js Fix date-based post header links 2020-01-29 06:42:32 -05:00
menu.js Add menu hover delay on user pages + editor 2020-07-30 11:26:29 -04:00
mode-css.js
postactions.js
posts.js
prose.bundle.js using a branch from github with the markdown hashtag serializing fix 2021-02-13 13:27:15 +01:00
README.md
theme-chrome.js
webfont.js
worker-css.js

static/js

This directory is for Javascript.

Updating libraries

Update instructions, for libraries that involve more than just downloading the latest version.

highlightjs

To update the highlightjs library, first download a plain package (no languages included) from highlightjs.org. The highlight.pack.js file in the archive should be moved into this static/js/ directory and renamed to highlight.min.js.

Then download an archive of the latest version. Extract it to some directory, and replace ~/Downloads/highlight.js below with the resulting directory.

#!/bin/bash

version=9.13.1

cd $GOPATH/src/github.com/writeas/writefreely/static/js/highlightjs
for f in $(ls ~/Downloads/highlight.js/src/languages); do
	# Use minified versions
	f=$(echo $f | sed 's/\.js/.min.js/')
	# Download the version
	wget "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/$version/languages/$f"
done

Commit the changes and you're done!