-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ConfigHelp.md: Fix format/rendering issue in documentation #17
base: master
Are you sure you want to change the base?
Conversation
Updated to use pyalsaaudio 0.9.0. Some of the parameters to alsaaudio.PCM have changed and some calls have been deprecated. Added find_alsa_devices.py script to show a list of all the audio capture devices on the system.
…it is available via HTTPS. So needed to change the decision of which to use when.
Code was overwriting the users selection of log file format. Remove the code that does that so the user can choose.
NOAA has moved around their data repository so need to change algorithm to fetch data 2017 or newer via FTP instead of HTTP
Hey cyber-g. Thanks for the fix. Eric is kind of on break from maintaining this code. Thanks. |
Sure ! |
Should I close this PR since it is continued on fork of @sberl ? |
There is a small formatting/rendering issue for the markdown
ConfigHelp.md
documentation file.Some sections are highlighted by
div
tags (example :<div id='id-section1'/>
)These tags are currently directly followed by subsection titles (example :
## [PARAMETERS] ##
)Issue : the subsection title is not properly rendered on the web interface.
Solution : There should be an empty line after those tags for having a proper rendering of the subsection titles.
This PR fixes this rendering issue by adding the appropriate empty lines after the
div
tags.