forked from ringcentral/slate
-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from tripit/dev
Version 1.0
- Loading branch information
Showing
15 changed files
with
644 additions
and
304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Changelog | ||
|
||
## Version 1.0 | ||
|
||
*July 2, 2014* | ||
|
||
[View Issues](https://github.com/tripit/slate/issues?milestone=1&state=closed) | ||
|
||
**Features:** | ||
|
||
- Responsive designs for phones and tablets | ||
- Started tagging versions | ||
|
||
**Fixes:** | ||
|
||
- Fixed 'unrecognized expression' error | ||
- Fixed #undefined hash bug | ||
- Fixed bug where the current language tab would be unselected | ||
- Fixed bug where tocify wouldn't highlight the current section while searching | ||
- Fixed bug where ids of header tags would have special characters that caused problems | ||
- Updated layout so that pages with disabled search wouldn't load search.js | ||
- Cleaned up Javascript |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module RedcarpetHeaderFix | ||
def header(text, level, id) | ||
clean_id = id.gsub(/[\.]/, '-').gsub(/[^a-zA-Z0-9\-_]/, '') | ||
"<h#{level} id='#{clean_id}'>#{text}</h1>" | ||
end | ||
end | ||
|
||
require 'middleman-core/renderers/redcarpet' | ||
Middleman::Renderers::MiddlemanRedcarpetHTML.send :include, RedcarpetHeaderFix |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
//= require_tree ./lib | ||
//= require_tree ./app | ||
//= stub ./app/search.js | ||
//= stub ./lib/lunr.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.