Skip to content
This repository has been archived by the owner on Nov 20, 2021. It is now read-only.

Commit

Permalink
BUMP version
Browse files Browse the repository at this point in the history
  • Loading branch information
belen-albeza committed Jun 26, 2015
1 parent 15a1073 commit 20c828c
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
37 changes: 36 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,35 @@ If you don't need the *About* page you can get rid of the menu by editing `parti

If you need to add more static pages, just add more links to that `<ul>` list.

### Syntax highlighting

If you are a technical writer and embed source code samples in your posts, you can get syntax highlighting with [prism](http://www.prismjs.com).

When you are editing your post, simple attach `language-xxxx` to the triple backtick code block, where `xxxx` is the identifier of the language you are using.

Example of use within Ghost's editor:

```
```language-ruby
class Vader
def hi
puts "I am your father"
end
end
```

Included languages are:

- `language-clike` (C-like languages)
- `language-markup` (HTML)
- `language-css`, `language-less` and `language-sass`
- `language-javascript`
- `language-markdown`
- `language-python`
- `language-ruby`

If you need extra languages, download a new custom version of prism and overwrite the `prism.js` file included in `assets/js`.

## Development

If you want to play around, you'll need:
Expand Down Expand Up @@ -93,6 +122,12 @@ grunt run

## Changelog

### 1.1.X

- 1.1.0
- Made the theme forwards-compatible regarding jQuery. See [No more jQuery in ghost_foot](http://dev.ghost.org/no-more-jquery/)
- Changed the syntax highlighting library to be [prism](http://www.prismjs.com) instead of Google's `prettify`.

### 1.0.X

- 1.0.3
Expand All @@ -111,4 +146,4 @@ grunt run

Source code released under the MIT license. See `LICENSE` for details.

[Font Awesome](https://github.com/FortAwesome/Font-Awesome/) font (`assets/fonts/fontawesome-webfont.woff`) is licensed under the [SIL Open Font License 1.1](http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL).
[Font Awesome](https://github.com/FortAwesome/Font-Awesome/) font (`assets/fonts/fontawesome-webfont.woff`) is licensed under the [SIL Open Font License 1.1](http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL).
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hikari-no-ghost-theme",
"version": "1.0.3",
"version": "1.1.0",
"description": "Theme for the Ghost blogging platform",
"main": "Gruntfile.js",
"scripts": {
Expand Down

0 comments on commit 20c828c

Please sign in to comment.