Updated Examples and Recipes (markdown)

Howard Hinnant
2018-11-13 10:57:49 -05:00
parent 652d6ecbeb
commit dfddf12dbe

@@ -26,7 +26,7 @@ This page contains examples and recipes contributed by community members. Feel f
- [What is the epoch difference between Unix Time and GPS time?](#unix_gps_epoch_diff) - [What is the epoch difference between Unix Time and GPS time?](#unix_gps_epoch_diff)
- [How to convert to/from C++ Builder's TDate and TDateTime](#TDate) - [How to convert to/from C++ Builder's TDate and TDateTime](#TDate)
- [How to convert to/from QDate](#QDate) - [How to convert to/from QDate](#QDate)
- [How to convert to/from Windows' FILETIME](#FILETIME) - [How to convert to/from Windows' FILETIME](#fILETIME)
- [Print out a compact calendar for the year](#calendar) - [Print out a compact calendar for the year](#calendar)
- [Parsing unambiguous date time inside daylight transition](#parse_daylight_transition) - [Parsing unambiguous date time inside daylight transition](#parse_daylight_transition)
- [`microfortnights`?! Are you serious?](#microfortnights) - [`microfortnights`?! Are you serious?](#microfortnights)
@@ -1686,7 +1686,7 @@ to_QDate(date::sys_days sd)
These work by simply adjusting the epoch of these two types. These work by simply adjusting the epoch of these two types.
<a name="FILETIME"></a> <a name="fILETIME"></a>
### How to convert between Windows' `FILETIME` and `system_clock` ### How to convert between Windows' `FILETIME` and `system_clock`
(by [Billy O'Neal](https://github.com/BillyONeal)) (by [Billy O'Neal](https://github.com/BillyONeal))