hyunsupul / aesop-core

Open-sourced suite of components that empower interactive storytelling in WordPress.
http://aesopstoryengine.com
GNU General Public License v2.0
244 stars 56 forks source link

Create README.md from readme.txt #241

Closed michaelbeil closed 9 years ago

michaelbeil commented 9 years ago

We could do this by adding the following to Gruntfile.js:

wp_readme_to_markdown: {
            your_target: {
                files: {
                    'README.md': 'readme.txt'
                }
            },
        },

// Create README.md from readme.txt
grunt.registerTask( 'readme', ['wp_readme_to_markdown']);

and "grunt-wp-readme-to-markdown": "~0.9.0" to package.json.

michaelbeil commented 9 years ago

However, our readme.txt and README.md are quite different so I don't know if we would want to go this route.

michaelbeil commented 9 years ago

Should I close this out @bearded-avenger?