Skip to content

Commit

Permalink
New custom brushes added: halcon,IEC61131,kotlin,latex,Makefile,mel,o…
Browse files Browse the repository at this point in the history
…bjective-c,yaml

Upgrade SyntaxHighlighter to commit syntaxhighlighter/syntaxhighlighter@37724fd
Rename plugin folder
  • Loading branch information
crazy-max committed Mar 1, 2018
1 parent 0efb4d6 commit e7cb4c0
Show file tree
Hide file tree
Showing 25 changed files with 626 additions and 2,664 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog

## 2018/03/01

* Change option `override` with a list of tags (code, file) to override
* Make tag case unsensitive
* New custom brushes added: halcon,IEC61131,kotlin,latex,Makefile,mel,objective-c,yaml
* Upgrade SyntaxHighlighter to commit syntaxhighlighter/syntaxhighlighter@37724fd

## 2018/02/09

* Update author's name
Expand Down
63 changes: 55 additions & 8 deletions README.md
Expand Up @@ -34,7 +34,7 @@ If you install this plugin manually, make sure it is installed in `lib/plugins/s
### Brush

The brush (language) that SyntaxHighlighter should use. Defaults to "text" if none is provided.<br />
See [SyntaxHighlighter Brushes page](https://github.com/syntaxhighlighter/syntaxhighlighter/wiki/Brushes-and-Themes) for a complete list of available brushes.
See the section [brushes and themes](#list-of-brushes-and-themes) for a complete list of available brushes.

### Options

Expand Down Expand Up @@ -131,13 +131,60 @@ Expected result:

![](resources/highlight-range.png)

## Issues and Features

* https://github.com/crazy-max/dokuwiki-plugin-syntaxhighlighter4/issues

## Changelog

See `CHANGELOG.md`.
### List of brushes and themes

* **[Official brushes](https://github.com/syntaxhighlighter/syntaxhighlighter/wiki/Brushes-and-Themes)**
* applescript
* as3
* base
* bash
* coldfusion
* cpp
* csharp
* css
* delphi
* diff
* erlang
* groovy
* haxe
* java
* javafx
* javascript
* perl
* php
* plain
* powershell
* python
* ruby
* sass
* scala
* sql
* swift
* tap
* typescript
* vb
* xml
* **Custom brushes**
* halcon
* IEC61131
* kotlin
* latex
* Makefile
* mel
* objective-c
* yaml
* **[Official themes](https://github.com/syntaxhighlighter/syntaxhighlighter/wiki/Brushes-and-Themes)**
* default
* django
* eclipse
* emacs
* fadetogrey
* mdultra
* midnight
* rdark
* swift
* **Custom themes**
*

## How can i help ?

Expand Down
3 changes: 2 additions & 1 deletion build.properties
@@ -1,7 +1,8 @@
release.src = plugin
release.base = syntaxhighlighter4
release.author = CrazyMax
release.email = webmaster@crazyws.fr
release.date = 2018-02-09
release.date = 2018-03-01
release.name = SyntaxHighlighter4 Plugin
release.desc = Alternative to GeSHi server-side code highlighting with client-side SyntaxHighlighter 4 by Alex Gorbatchev
release.url = http://www.dokuwiki.org/plugin:syntaxhighlighter4
8 changes: 4 additions & 4 deletions build.xml
Expand Up @@ -34,11 +34,11 @@

<target name="release" depends="load.lib">
<echo message="Clean release folder..." />
<delete dir="${bin.path}/${release.base}" />
<delete dir="${bin.path}/${release.src}" />

<echo message="Copy ${release.base} folder..." />
<echo message="Copy ${release.src} folder..." />
<copy todir="${bin.path}/${release.base}">
<fileset dir="${project.basedir}/${release.base}" />
<fileset dir="${project.basedir}/${release.src}" />
</copy>

<echo message="Copy others files..." />
Expand All @@ -49,7 +49,7 @@
</copy>

<echo message="Insert plugins info in ${bin.path}/${release.base}/plugin.info.txt..." />
<copy file="${project.basedir}/${release.base}/plugin.info.txt" tofile="${bin.path}/${release.base}/plugin.info.txt" overwrite="true">
<copy file="${project.basedir}/${release.src}/plugin.info.txt" tofile="${bin.path}/${release.base}/plugin.info.txt" overwrite="true">
<filterset>
<filter token="RELEASE_BASE" value="${release.base}" />
<filter token="RELEASE_AUTHOR" value="${release.author}" />
Expand Down
Binary file modified dist/syntaxhighlighter4.zip
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e7cb4c0

Please sign in to comment.