Difference between revisions of "Template:PrettyDate"

From DAS Wiki
 
(10 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>
{{{1}}}
+
{{#ifeq:{{#len:{{{value}}}}}|4
{{#ifeq:{{#len:{{{1}}}}}|4|
+
        |{{#time:Y|{{{value}}}}} <!-- 4 digits long must mean year only -->
  {{#time:Y|{{{1}}}}}|
+
        |{{#ifeq:{{{precision}}}|2
  {{#if:{{#pos:{{{1}}}|-}}|
+
                |2 <!--{{#time:F Y|{{{value}}}}} precision of 2 means Month and Year -->
    {{#time:j/n/y|{{{1}}}}}|
+
                    |{{#time:F j, Y|{{{value}}}}} <!-- else full date -->
    {{#time:F Y|{{{1}}}}}
+
          }}<!--end of ifeq-->
  }}<!--end of if-->
 
 
}}<!--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.