kitschpatrol / BrainGrapher

Processing-based visualizer for NeuroSky EEG brainwave data output from the Arduino Brain library.
https://frontiernerds.com/brain-hack
MIT License
206 stars 85 forks source link

Fix Markdown header rendering #5

Closed josephfrazier closed 7 years ago

josephfrazier commented 7 years ago

GitHub recently updated their Markdown renderer to require a space between the # characters and the title of a header. See here for details: https://github.com/github/markup/issues/1013

This change was made by running:

sed --in-place 's/^\(##*\)\([^# ]\)/\1 \2/' README.markdown
kitschpatrol commented 7 years ago

Thanks.