Skip to content

Commit

Permalink
Build v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
makotokw committed Dec 26, 2016
1 parent b25429d commit 1398a48
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 24 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Download from https://github.com/makotokw/wp-gfm/releases and upload to /path/to

## PHP-Markdown (Recommended)

This conversion depends on [PHP Markdown Lib 1.6](http://michelf.ca/projects/php-markdown/).
This conversion depends on [PHP Markdown Lib 1.7.0](http://michelf.ca/projects/php-markdown/).

### Usage

Expand Down Expand Up @@ -141,4 +141,4 @@ The MIT License

The line below is used for the updater API, please leave it untouched unless bumping the version up :)

~Current Version:0.8~
~Current Version:0.9~
20 changes: 0 additions & 20 deletions css/markdown.css
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
/* line 2, ../sass/_typography.scss */
.markdown-content h1, .markdown-content h2, .markdown-content h3, .markdown-content h4, .markdown-content h5, .markdown-content h6 {
clear: none;
outline: none;
}
/* line 7, ../sass/_typography.scss */
.markdown-content .footnotes hr {
margin-bottom: 4px;
}
/* line 10, ../sass/_typography.scss */
.markdown-content .footnotes ol {
padding: 0;
margin: 0 0 0 20px;
font-size: .8em;
}

/* line 1, ../sass/_toc.scss */
.wp-gfm-toc-content {
background-color: #fefefe;
border: 1px solid #ddd;
Expand All @@ -26,87 +22,71 @@
display: table;
}

/* line 13, ../sass/_toc.scss */
.wp-gfm-toc-content > ul {
margin-top: 15px;
}
/* line 16, ../sass/_toc.scss */
.wp-gfm-toc-content ul {
padding: 0;
margin: 0 0 0 20px;
}
/* line 20, ../sass/_toc.scss */
.wp-gfm-toc-content li {
margin: 0;
font-size: 12px;
}
/* line 23, ../sass/_toc.scss */
.wp-gfm-toc-content li li {
margin-left: 1.5em;
font-size: 10px;
}
/* line 28, ../sass/_toc.scss */
.wp-gfm-toc-content a {
color: #333;
text-decoration: none;
}
/* line 31, ../sass/_toc.scss */
.wp-gfm-toc-content a:hover {
text-decoration: underline;
}
/* line 35, ../sass/_toc.scss */
.wp-gfm-toc-content.right {
float: right;
margin-left: 12px;
margin-right: 0;
width: auto;
}
/* line 42, ../sass/_toc.scss */
.wp-gfm-toc-content.left {
float: left;
margin-right: 12px;
margin-left: 0;
width: auto;
}

/* line 1, ../sass/_footer.scss */
.wp-gfm-footer {
margin: 5px 0;
clear: both;
}

/* line 5, ../sass/_footer.scss */
.wp-gfm-ad {
display: inline;
float: right;
font-size: 12px;
text-align: right;
}
/* line 10, ../sass/_footer.scss */
.wp-gfm-ad .wp-gfm-powered-by {
color: #767676;
}
/* line 13, ../sass/_footer.scss */
.wp-gfm-ad img {
margin: 0;
}
/* line 16, ../sass/_footer.scss */
.wp-gfm-ad a {
font-weight: bold;
}

/* line 1, ../sass/_embed.scss */
.markdown-file {
position: relative;
border: 1px solid #dedede;
border-radius: 3px;
margin: 1em 0;
}
/* line 7, ../sass/_embed.scss */
.markdown-file .markdown-body {
padding: 20px;
}
/* line 11, ../sass/_embed.scss */
.markdown-file .markdown-meta {
clear: both;
display: block;
Expand Down
4 changes: 2 additions & 2 deletions markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
Plugin Name: GitHub Flavored Markdown for WordPress
Plugin URI: https://github.com/makotokw/wp-gfm
Version: 0.8
Version: 0.9
Description: Converts block in GitHub Flavored Markdown by using shortcode <code>[gfm]</code> and support PHP-Markdown by using shortcode <code>[markdown]</code>
Author: makoto_kw
Author URI: http://makotokw.com/
Expand All @@ -11,7 +11,7 @@

class WP_GFM {
const NAME = 'WP_GFM';
const VERSION = '0.8';
const VERSION = '0.9';
const DEFAULT_RENDER_URL = 'https://api.github.com/markdown/raw';

// google-code-prettify: https://code.google.com/p/google-code-prettify/
Expand Down

0 comments on commit 1398a48

Please sign in to comment.