Skip to content

Commit

Permalink
dates
Browse files Browse the repository at this point in the history
  • Loading branch information
FallBackITA27 committed Apr 11, 2024
1 parent 20dcb59 commit 5a10376
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mkwpp-parser/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,21 @@ <h2>table of contents</h2>
<li><a href="#info">Top</a></li>
<li><a href="#table_of_contents">Table Of Contents</a></li>
<li><a href="#about_colons">How are colons handled</a></li>
<li><a href="#insert_the_name">How do you insert the name</a></li>
<li><a href="#insert_the_date">How do you insert the date</a></li>
<li><a href="#indicating_flap_and_nosc">How to indicate for flap and nosc</a></li>
<li><a href="#how_to_format_times">How to format times</a></li>
<li><a href="#how_are_track_names_read?">Track Names Parsing</a></li>
</ol>
<div id="about_colons"></div>
<h2>about colons..</h2>
<p>Colons are no longer necessary. this parser splits with spaces and new lines, much like programming languages do during tokenization.</p>
<div id="insert_the_name"></div>
<h2>inserting a name</h2>
<p>the parser will look for a line that starts with <code>name</code>, to determine if there's a new submission to deal with.</p>
<div id="insert_the_date"></div>
<h2>inserting a date</h2>
<p>the parser will look for a line that starts with <code>date</code>, to determine the date of the times. dates are read like this: it first looks for four numbers in a row, and reads that as the year. Then it looks at any other string containing numbers, and reads that as the day. Lastly, it looks at the remaining string, and reads that as the month. If there are more than three parts to a date, it will fail with a warning and skip the submission.</p>
<div id="indicating_flap_and_nosc"></div>
<h2>indicating flap and nosc</h2>
<p>There are multiple ways to indicate for flap and nosc. You can set all times as nosc or as flap by writing any of the accepted names before the actual time submissions.</p>
Expand Down

0 comments on commit 5a10376

Please sign in to comment.