Skip to content

Commit d53e0de

Browse files
committed
fix some indenting issues, and bing!
1 parent 21798a1 commit d53e0de

File tree

3 files changed

+25
-18
lines changed

3 files changed

+25
-18
lines changed

next/guidelines.html

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -722,12 +722,12 @@ <h1 id="guidelines-for-the-mkiocccentry-toolkit">Guidelines for the mkiocccentry
722722
by the IOCCC judges only</strong>” in the <code>chkentry(1)</code> man page.</p>
723723
<p>To view <a href="https://github.com/ioccc-src/mkiocccentry">mkiocccentry toolkit</a> man pages,
724724
while your current directory is the top of the source tree:</p>
725-
<pre><code>man soup/man/man1/mkiocccentry.1
726-
man soup/man/man1/iocccsize.1
727-
man soup/man/man1/txzchk.1
728-
man test_ioccc/man/man1/fnamchk.1
729-
man soup/man/man1/chksubmit.1
730-
man soup/man/man1/chkentry.1</code></pre>
725+
<pre><code> man soup/man/man1/mkiocccentry.1
726+
man soup/man/man1/iocccsize.1
727+
man soup/man/man1/txzchk.1
728+
man test_ioccc/man/man1/fnamchk.1
729+
man soup/man/man1/chksubmit.1
730+
man soup/man/man1/chkentry.1</code></pre>
731731
<p>The above <code>man(1)</code> commands will show the toolkit man pages without having to install them first.</p>
732732
<p>So that you do not have to repeatedly answer all the <code>mkiocccentry(1)</code> questions,
733733
use <code>mkiocccentry -a answers ...</code> to create a file containing the answers you first give,
@@ -747,12 +747,12 @@ <h1 id="guidelines-for-the-mkiocccentry-toolkit">Guidelines for the mkiocccentry
747747
without having to type in answers each time, you can use the <code>-d</code> or <code>-s seed</code>
748748
option to <code>mkiocccentry</code> for the tool to pseudo-randomly create answers for you.
749749
For example:</p>
750-
<pre><code>mkiocccentry -d workdir topdir</code></pre>
750+
<pre><code> mkiocccentry -d workdir topdir</code></pre>
751751
<p>Do <strong>NOT</strong> submit a tarball formed by <code>mkiocccentry -d ..</code> <strong>OR</strong> by
752752
<code>mkiocccentry -s seed ..</code> <strong>OR</strong> by using the <code>test</code> UUID!</p>
753753
<p>The <code>mkiocccentry(1)</code> tool creates an <code>xz(1)</code> compressed <strong>v7 format</strong> tarball using a <code>tar(1)</code>
754754
command of the form:</p>
755-
<pre><code>cd workdir/UUID-slot_num &amp;&amp; tar --format=v7 -cJf submit.UUID-slot_num.timestamp.txz UUID-slot_num</code></pre>
755+
<pre><code> cd workdir/UUID-slot_num &amp;&amp; tar --format=v7 -cJf submit.UUID-slot_num.timestamp.txz UUID-slot_num</code></pre>
756756
<p>In many places the <code>mkiocccentry(1)</code> tool will prompt you to verify what you input, allowing you to
757757
correct details as you go along.</p>
758758
<p>Pressing the “<em>enter key</em>” at the <code>mkiocccentry(1)</code> tool prompts will allow you
@@ -966,6 +966,7 @@ <h1 id="our-likes-and-dislikes">OUR LIKES AND DISLIKES:</h1>
966966
<p>We <strong>DISLIKE</strong> the use of obscure compiler flags, especially
967967
if <code>gcc</code> and/or <code>clang</code> do not support it. We <strong>suggest</strong>
968968
that you not use any really obscure compiler flags if you can help it.</p>
969+
<div id="nested-functions">
969970
<p>One side effect of the above is that you cannot assume the use
970971
of nested functions such as:</p>
971972
<pre><code> int main() {
@@ -974,6 +975,7 @@ <h1 id="our-likes-and-dislikes">OUR LIKES AND DISLIKES:</h1>
974975
}
975976
| please_dont_submit_this();
976977
}</code></pre>
978+
</div>
977979
<p>On 2012 July 20, the <a href="../judges.html">IOCCC judges</a> rescinded the encouragement of
978980
nested functions. Such constructions, while interesting and sometimes
979981
amusing, will have to wait until they are required by a C standard that are
@@ -1392,6 +1394,7 @@ <h1 id="fundamental-guidelines">Fun😄damental Guidelines</h1>
13921394
<p>Do not fear if you’re not 100% sure of the significance of
13931395
<code>2305567963945518424753102147331756070</code> as it is not of prime importance: or is
13941396
it? :-)</p>
1397+
<p>With respect to <a href="#nested-functions">nested functions</a>, try <code>chkentry -b</code>.</p>
13951398
<p>Jump to: <a href="#">top</a></p>
13961399
<div id="more-information">
13971400

next/guidelines.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -359,12 +359,12 @@ To view [mkiocccentry toolkit](https://github.com/ioccc-src/mkiocccentry) man pa
359359
while your current directory is the top of the source tree:
360360

361361
``` <!---sh-->
362-
man soup/man/man1/mkiocccentry.1
363-
man soup/man/man1/iocccsize.1
364-
man soup/man/man1/txzchk.1
365-
man test_ioccc/man/man1/fnamchk.1
366-
man soup/man/man1/chksubmit.1
367-
man soup/man/man1/chkentry.1
362+
man soup/man/man1/mkiocccentry.1
363+
man soup/man/man1/iocccsize.1
364+
man soup/man/man1/txzchk.1
365+
man test_ioccc/man/man1/fnamchk.1
366+
man soup/man/man1/chksubmit.1
367+
man soup/man/man1/chkentry.1
368368
```
369369

370370
The above `man(1)` commands will show the toolkit man pages without having to install them first.
@@ -394,7 +394,7 @@ option to `mkiocccentry` for the tool to pseudo-randomly create answers for you.
394394
For example:
395395

396396
``` <!---sh-->
397-
mkiocccentry -d workdir topdir
397+
mkiocccentry -d workdir topdir
398398
```
399399

400400
Do **NOT** submit a tarball formed by `mkiocccentry -d ..` **OR** by
@@ -404,7 +404,7 @@ The `mkiocccentry(1)` tool creates an `xz(1)` compressed **v7 format** tarball u
404404
command of the form:
405405

406406
``` <!---sh-->
407-
cd workdir/UUID-slot_num && tar --format=v7 -cJf submit.UUID-slot_num.timestamp.txz UUID-slot_num
407+
cd workdir/UUID-slot_num && tar --format=v7 -cJf submit.UUID-slot_num.timestamp.txz UUID-slot_num
408408
```
409409

410410
In many places the `mkiocccentry(1)` tool will prompt you to verify what you input, allowing you to
@@ -694,6 +694,7 @@ We **DISLIKE** the use of obscure compiler flags, especially
694694
if `gcc` and/or `clang` do not support it. We **suggest**
695695
that you not use any really obscure compiler flags if you can help it.
696696

697+
<div id="nested-functions">
697698
One side effect of the above is that you cannot assume the use
698699
of nested functions such as:
699700

@@ -705,6 +706,7 @@ of nested functions such as:
705706
| please_dont_submit_this();
706707
}
707708
```
709+
</div>
708710

709711
On 2012 July 20, the [IOCCC judges](../judges.html) rescinded the encouragement of
710712
nested functions. Such constructions, while interesting and sometimes
@@ -1237,6 +1239,8 @@ Do not fear if you're not 100% sure of the significance of
12371239
`2305567963945518424753102147331756070` as it is not of prime importance: or is
12381240
it? :-)
12391241

1242+
With respect to [nested functions](#nested-functions), try `chkentry -b`.
1243+
12401244

12411245
Jump to: [top](#)
12421246

sitemap.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16826,11 +16826,11 @@
1682616826
</url>
1682716827
<url>
1682816828
<loc>https://www.ioccc.org/next/guidelines.html</loc>
16829-
<lastmod>2025-11-30T06:53:29+00:00</lastmod>
16829+
<lastmod>2025-11-30T07:10:28+00:00</lastmod>
1683016830
</url>
1683116831
<url>
1683216832
<loc>https://www.ioccc.org/next/guidelines.md</loc>
16833-
<lastmod>2025-11-30T06:53:23+00:00</lastmod>
16833+
<lastmod>2025-11-30T07:10:21+00:00</lastmod>
1683416834
</url>
1683516835
<url>
1683616836
<loc>https://www.ioccc.org/next/index.html</loc>

0 commit comments

Comments
 (0)