Skip to content

Commit

Permalink
Fix markdownextra set
Browse files Browse the repository at this point in the history
  • Loading branch information
klen committed Feb 27, 2014
1 parent 5b33d5a commit 9f4ecee
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 10 deletions.
1 change: 1 addition & 0 deletions Changelog
@@ -1,6 +1,7 @@
2014-02-27 horneds

* Support extension configurations
* Fix markdown extra set

2014-02-26 horneds

Expand Down
4 changes: 4 additions & 0 deletions Makefile
Expand Up @@ -30,6 +30,10 @@ clean:
register:
@python setup.py register

.PHONY: sdist
sdist:
@python setup.py sdist

.PHONY: upload
# target: upload - Upload module on PyPi
upload: docs
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Expand Up @@ -32,13 +32,12 @@ mySettings = {
{separator:'---------------' },
{name:'Picture', key:'P', replaceWith:'![[![Alternative text]!]]([![Url:!:http://]!] "[![Title]!]")'},
{name:'Link', key:'L', openWith:'[', closeWith:']([![Url:!:http://]!] "[![Title]!]")', placeHolder:'Your text to link here...' },
{name:'Definition', className:'definition', key:'D', openWith:'Term\n', placeHolder:': Your definition here ' },
{name:'Definition', key:'D', openWith:'Term\n', placeHolder:': Your definition here ' },
{separator:'---------------'},
{name:'Quotes', className:'quotes', openWith:'> '},
{name:'Code Block / Code', className:'code', openWith:'(!(\t|!|`)!)', closeWith:'(!(`)!)'},
{name:'Quotes', openWith:'> '},
{name:'Code Block / Code', openWith:'(!(\t|!|`)!)', closeWith:'(!(`)!)'},
{separator:'---------------'},
{name:'Table',
className:'table',
header:" header ",
seperator:" ------ ",
placeholder:" data ",
Expand Down
Expand Up @@ -42,20 +42,20 @@
background-image:url(images/link.png);
}

.markItUp .definition a {
.markItUp .markItUpButton13 a {
background-image:url(images/book_open.png);
}

.markItUp .quotes a {
.markItUp .markItUpButton14 a {
background-image:url(images/quotes.png);
}
.markItUp .code a {

.markItUp .markItUpButton15 a {
background-image:url(images/code.png);
}

.markItUp .table a {
.markItUp .markItUpButton16 a {
background-image:url(images/table.png);
}

.markItUp .preview a {
background-image:url(images/preview.png);
}

0 comments on commit 9f4ecee

Please sign in to comment.