Difference between revisions of "Template:PrettyDate"

From DAS Wiki
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
<noinclude>
 
<noinclude>
This is the PrettyDate template. It converts various date records to the January 1, 2021 format.
+
This is the PrettyDate template. It converts various date records from a 2021-2-1 format to a February 1, 2021 format.
 
</noinclude>
 
</noinclude>
 
<includeonly>
 
<includeonly>
{{#ifeq:{{#len:{{{value}}}}}|4|
+
{{#ifeq:{{#len:{{{value}}}}}|4
  {{#time:Y|{{{value}}}}}|
+
        |{{#time:Y|{{{value}}}}} <!-- 4 digits long must mean year only -->
  {{#if:{{#pos:{{{value}}}|-}}|
+
        |{{#ifeq:{{{precision}}}|2
    {{#time:j/n/y|{{{value}}}}}|
+
                |2 <!--{{#time:F Y|{{{value}}}}} precision of 2 means Month and Year -->
    {{#time:F Y|{{{value}}}}}
+
                    |{{#time:F j, Y|{{{value}}}}} <!-- else full date -->
  }}<!--end of if-->
+
          }}<!--end of ifeq-->
 
}}<!--end of ifeq-->
 
}}<!--end of ifeq-->
 
</includeonly>
 
</includeonly>

Latest revision as of 15:50, May 13, 2021

This is the PrettyDate template. It converts various date records from a 2021-2-1 format to a February 1, 2021 format.