From 0b2e54a561f37e4ca6c6b578df0dd046bce47724 Mon Sep 17 00:00:00 2001 From: Florian D Date: Mon, 10 Apr 2017 09:46:51 +0200 Subject: [PATCH] Corrected markdown header format --- Boost-datetime-Examples-Translated.md | 36 +++++++++++++-------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/Boost-datetime-Examples-Translated.md b/Boost-datetime-Examples-Translated.md index b2e5c98..018c034 100644 --- a/Boost-datetime-Examples-Translated.md +++ b/Boost-datetime-Examples-Translated.md @@ -4,7 +4,7 @@ http://www.boost.org/doc/libs/1_59_0/doc/html/date_time/examples.html#date_time. look if ported to this library. -##Contents +## Contents - [Dates as Strings](#Dates_as_Strings) - [Days Alive](#Days_Alive) - [Days Between New Years](#Days_Between_New_Years) @@ -26,7 +26,7 @@ look if ported to this library. *** -###Dates as String +### Dates as String #include "date.h" #include @@ -85,7 +85,7 @@ look if ported to this library. } -###Days Alive +### Days Alive #include "date.h" #include "tz.h" @@ -128,7 +128,7 @@ look if ported to this library. } -###Days Between New Years +### Days Between New Years #include "date.h" #include "tz.h" @@ -151,7 +151,7 @@ look if ported to this library. } -###Last Day of the Months +### Last Day of the Months #include "date.h" #include @@ -177,7 +177,7 @@ look if ported to this library. } -###Localization Demonstration +### Localization Demonstration #include "date.h" #include @@ -245,7 +245,7 @@ If your OS supports the `std::locale("de_DE")` the above can be simplified to: } -###Date Period Calculations +### Date Period Calculations #include "date.h" #include @@ -277,7 +277,7 @@ If your OS supports the `std::locale("de_DE")` the above can be simplified to: } -###Print Holidays +### Print Holidays #include "date.h" #include @@ -316,7 +316,7 @@ If your OS supports the `std::locale("de_DE")` the above can be simplified to: } -###Print Month +### Print Month #include "date.h" #include @@ -350,7 +350,7 @@ If your OS supports the `std::locale("de_DE")` the above can be simplified to: } -###Month Adding +### Month Adding #include "date.h" #include "tz.h" @@ -372,7 +372,7 @@ If your OS supports the `std::locale("de_DE")` the above can be simplified to: } -###Time Math +### Time Math #include "date.h" #include @@ -395,7 +395,7 @@ If your OS supports the `std::locale("de_DE")` the above can be simplified to: } -###Print Hours +### Print Hours #include "date.h" #include "tz.h" @@ -420,7 +420,7 @@ If your OS supports the `std::locale("de_DE")` the above can be simplified to: } -###Local to UTC Conversion +### Local to UTC Conversion #include "date.h" #include "tz.h" @@ -466,7 +466,7 @@ If your OS supports the `std::locale("de_DE")` the above can be simplified to: } -###Time Periods +### Time Periods #include "date.h" #include @@ -485,13 +485,13 @@ If your OS supports the `std::locale("de_DE")` the above can be simplified to: } -###Simple Time Zones +### Simple Time Zones The boost example shows custom time zones. This library supports only the full history of the IANA timezone database. To achieve a custom timezone you would need to edit the IANA timezone database. For an example using the IANA timezone database see the [Local to UTC Conversion](#Local_to_UTC_Conversion) example. -###Daylight Savings Calc Rules +### Daylight Savings Calc Rules // This library does not support custom daylight savings rules. But it // does support the notion of partial dates and finding the nth (or last) @@ -514,7 +514,7 @@ an example using the IANA timezone database see the [Local to UTC Conversion](#L } -###Flight Time Example +### Flight Time Example #include "tz.h" #include @@ -554,7 +554,7 @@ an example using the IANA timezone database see the [Local to UTC Conversion](#L // with the date. -###Seconds Since Epoch +### Seconds Since Epoch #include "date.h" #include "tz.h"