/2017/README.md: Remove Schedule Markup section.
authorrsiddharth <rsd@gnu.org>
Wed, 12 Oct 2016 03:00:34 +0000 (03:00 +0000)
committerrsiddharth <rsd@gnu.org>
Wed, 12 Oct 2016 03:00:34 +0000 (03:00 +0000)
It's now documented at https://pythonhosted.org/lpschedule-generator

2017/README.md

index 11a4db67553c65b88c329e043930c221bee2bf9b..f51fd0b335a2901d216caca430164aba14451b0e 100644 (file)
@@ -131,92 +131,6 @@ chmod +x foo.html
 
 Replace `foo.html` with the desired file name.
 
-Schedule Markup
----------------
-
-### Program Day
-
-    <article id="DAY-program" class="program-day"> <!-- DAY program start -->
-      <header class="program-day-header">
-        <hgroup>
-          <h2>Saturday, March DD
-            <a class="btn btn-default btn-xs" role="button"
-               data-toggle="collapse" aria-expanded="false"
-               aria-controls="DAY-timeslots"
-               href="#DAY-timeslots">
-              &#x2193;
-            </a>
-          </h2>
-        </hgroup>
-      </header>
-      <div class="collapse in" id="DAY-timeslots"> <!-- DAY-timeslots start -->
-        <!-- Time slots come here. See next section (Time slot) -->
-      </div> <!-- DAY-timeslots end -->
-    </article>
-
-Replace `DAY` by the day of the program (`sat` / `sun`).
-
-### Time slot
-
-#### sessions
-
-        <article id="DAY-tsM" class="program-timeslot"> <!-- DAY-tsM start -->
-          <header class="program-timeslot-header">
-            <hgroup>
-              <h2>TIME - Timeslot Description
-                <a class="btn btn-default btn-xs" role="button"
-                        data-toggle="collapse" aria-expanded="false"
-                        aria-controls="DAY-tsM-sessions"
-                        href="#DAY-tsM-sessions">
-                  &#x2193;
-                </a>
-              </h2>
-            </hgroup>
-          </header>
-          <div class="collapse in"
-               id="DAY-tsM-sessions"> <!-- DAY-tsM-sessions start -->
-             <!-- Sessions come here. See next section (Session). -->
-          </div> <!-- DAY-tsM-sessions end -->
-        </article> <!-- DAY-tsM end -->
-
-Replace `DAY` by the day of the program (`sat`/`sun`) and `M` by time
-slot number.
-
-#### break
-
-        <article id="DAY-ts-bM"
-                 class="program-timeslot-break"> <!-- DAY-ts-bM start -->
-          <header class="program-timeslot-break-header">
-            <hgroup>
-              <h2>TIME: Break</h2>
-            </hgroup>
-          </header>
-        </article> <!-- DAY-ts-bM end -->
-
-Replace `DAY` by the day of the program (`sat`/`sun`) and `M` by break
-number.
-
-### Session
-
-            <section id="DAY-tsM-sN"
-                     class="program-session"> <!-- DAY-tsM-sN start -->
-              <header class="program-session-header">
-                <h2>Session Heading</h2>
-              </header>
-              <!-- Session "always visible" Content -->
-              <button class="btn btn-default btn-xs" role="button"
-                      data-toggle="collapse" aria-expanded="false"
-                      aria-controls="DAY-tsM-sN-collapse"
-                      data-target="#DAY-tsM-sN-collapse">
-                Details
-              </button>
-              <div class="collapse in" id="DAY-tsM-sN-collapse">
-                <!-- Session Collapsible Content  -->
-              </div>
-            </section> <!-- DAY-tsM-sN end -->
-
-Replace `DAY` by the day of the program (`sat`/`sun`), `M` by the time slot number and `N` by the session number.
-
 Deploying to Staging/Live Servers
 ---------------------------------