Commit 4c3d1159cfca16e323635723d104da128b4522f1
1 parent
7d49500f
Change headings to markdown
Showing
1 changed file
with
5 additions
and
5 deletions
README.md
| 1 | -== Quick start == | 1 | +# Quick start |
| 2 | 2 | ||
| 3 | This is a lightweight C++ option parser library, supporting the standard GNU | 3 | This is a lightweight C++ option parser library, supporting the standard GNU |
| 4 | style syntax for options. | 4 | style syntax for options. |
| @@ -44,7 +44,7 @@ it appeared, and | @@ -44,7 +44,7 @@ it appeared, and | ||
| 44 | to get its value. If "opt" doesn't exist, or isn't of the right type, then an | 44 | to get its value. If "opt" doesn't exist, or isn't of the right type, then an |
| 45 | exception will be thrown. | 45 | exception will be thrown. |
| 46 | 46 | ||
| 47 | -=== Positional Arguments === | 47 | +## Positional Arguments |
| 48 | 48 | ||
| 49 | Positional arguments can be optionally parsed into one or more options. To set up positional arguments, call | 49 | Positional arguments can be optionally parsed into one or more options. To set up positional arguments, call |
| 50 | 50 | ||
| @@ -52,17 +52,17 @@ Positional arguments can be optionally parsed into one or more options. To set u | @@ -52,17 +52,17 @@ Positional arguments can be optionally parsed into one or more options. To set u | ||
| 52 | 52 | ||
| 53 | where "last" should be the name of an option with a container type, and the others should have a single value. | 53 | where "last" should be the name of an option with a container type, and the others should have a single value. |
| 54 | 54 | ||
| 55 | -== Linking == | 55 | +# Linking |
| 56 | 56 | ||
| 57 | This is a header only library. | 57 | This is a header only library. |
| 58 | 58 | ||
| 59 | -== Requirements == | 59 | +# Requirements |
| 60 | 60 | ||
| 61 | The only build requirement is a C++ compiler that supports C++11 regular | 61 | The only build requirement is a C++ compiler that supports C++11 regular |
| 62 | expressions. For example GCC >= 4.9 or clang with libc++. | 62 | expressions. For example GCC >= 4.9 or clang with libc++. |
| 63 | 63 | ||
| 64 | 64 | ||
| 65 | -== TODO list == | 65 | +# TODO list |
| 66 | 66 | ||
| 67 | * Allow unrecognised options. | 67 | * Allow unrecognised options. |
| 68 | * Various help strings. | 68 | * Various help strings. |