<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=7645&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [HowTo] Markdown (ronn) to man]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=7645</link>
		<description><![CDATA[The most recent posts in [HowTo] Markdown (ronn) to man.]]></description>
		<lastBuildDate>Mon, 08 Dec 2025 18:03:22 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [HowTo] Markdown (ronn) to man]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=60439#p60439</link>
			<description><![CDATA[<p>i have hand written manpages by hand for scripts that aren&#039;t even 500 lines of code long and that is because i have not generalized redundant code into functions enough like for this systemact script <a href="https://github.com/eylles/systemact" rel="nofollow">https://github.com/eylles/systemact</a> which as far as i know i&#039;m the only user and i don&#039;t even use like half of the features i&#039;ve added...</p>]]></description>
			<author><![CDATA[dummy@example.com (EDX-0)]]></author>
			<pubDate>Mon, 08 Dec 2025 18:03:22 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=60439#p60439</guid>
		</item>
		<item>
			<title><![CDATA[Re: [HowTo] Markdown (ronn) to man]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=60438#p60438</link>
			<description><![CDATA[<p>wait...you guys are adding man pages to stuff?</p>]]></description>
			<author><![CDATA[dummy@example.com (greenjeans)]]></author>
			<pubDate>Mon, 08 Dec 2025 17:55:43 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=60438#p60438</guid>
		</item>
		<item>
			<title><![CDATA[Re: [HowTo] Markdown (ronn) to man]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=60435#p60435</link>
			<description><![CDATA[<p>but where is the fun of writing manpages by hand and having formatting not work cuz you typed one extra char after the macro?</p>]]></description>
			<author><![CDATA[dummy@example.com (EDX-0)]]></author>
			<pubDate>Mon, 08 Dec 2025 13:36:13 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=60435#p60435</guid>
		</item>
		<item>
			<title><![CDATA[Re: [HowTo] Markdown (ronn) to man]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=60425#p60425</link>
			<description><![CDATA[<p>I prefer <span class="bbc">asciidoctor</span></p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Mon, 08 Dec 2025 01:09:49 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=60425#p60425</guid>
		</item>
		<item>
			<title><![CDATA[[HowTo] Markdown (ronn) to man]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=60391#p60391</link>
			<description><![CDATA[<p><span class="bbc">ronn</span> is a Markdown-like format for writing man pages. It&#039;s readable and editable in any text editor.</p><div class="quotebox"><blockquote><div><p>To enable syntax highlighting for <span class="bbc">.ronn</span> files in VSCodium:</p><ol class="decimal"><li><p>Open the <span class="bbc">.ronn</span> file.</p></li><li><p>Click on <strong>&quot;Plain Text&quot;</strong> in the bottom-right corner of the status bar.</p></li><li><p>Select <strong>&quot;Markdown&quot;</strong> from the language list.</p></li></ol><p>This applies Markdown highlighting, which works well for <span class="bbc">.ronn</span> files.<br />Alternatively, use the command palette:&#160; <br /><span class="bbc">Ctrl+Shift+P</span> → <strong>&quot;Change Language Mode&quot;</strong> → <strong>&quot;Markdown&quot;</strong>.</p></div></blockquote></div><p>To convert <span class="bbc">.ronn</span> files to man format, use the <span class="bbc">ronn</span> utility available in Devuan repositories:</p><div class="codebox"><pre><code>$ apt-cache search ronn$
ronn - tool to build manuals from Markdown
ruby-ronn - library to build manuals from Markdown</code></pre></div><p>Install ronn:</p><div class="codebox"><pre><code>sudo apt install ronn</code></pre></div><p>Convert <span class="bbc">.ronn</span> file to man format:</p><div class="codebox"><pre><code>ronn --roff pcm_conv.1.ronn</code></pre></div><p>This generates <span class="bbc">pcm_conv.1</span>.<br />View the man page:</p><div class="codebox"><pre><code>man ./pcm_conv.1</code></pre></div><p>Example <span class="bbc">.ronn</span> file:</p><div class="codebox"><pre><code>cat pcm_conv.1.ronn</code></pre></div><div class="codebox"><pre class="vscroll"><code>PCM_CONV(1)                                         User Commands                                         PCM_CONV(1)

## NAME

pcm_conv - high-quality FFT/DCT-based audio resampler

## SYNOPSIS

`pcm_conv` [&lt;input_file&gt;] [&lt;output_file&gt;] [ `-c` &lt;number&gt; ] [ `-m` &lt;mask&gt; ] [ `-n` &lt;on&gt;`|`&lt;off&gt; ] [ `-I` &lt;input_order&gt; ] [ `-O` &lt;output_order&gt; ] [ `-b` &lt;bits&gt; ] [ `-f` &lt;frequency&gt; ] [ `-T` &lt;trans&gt; ] [ `-W` &lt;win&gt; ] [ `-v` ] [ `-h | --help | --help-all` ]

## DESCRIPTION

Converts WAVE files with high-quality sample rate conversion using FFT or DCT transforms.

## OPTIONS

`-c`
:    Number of output channels: 1 (mono), 2 (stereo), up to 6 (3/2+SW).

`-m`
:    Channel mask (may conflict with -c).

`-n`
:    Normalize channel matrix (default: on).

`-I` &lt;order&gt;, `-O` &lt;order&gt;
:    Input/output channel order: MS, ALSA, or OSS layout.

`-b` &lt;bits&gt;
:    Output bit depth: 8, 16, 24, 32, 32f, or 64f.

`-f` &lt;value of sample rate in Hz&gt;, e.g.: `-f` 192000  
:    Output sample rate. The range of 6000–192000 Hz is 100% reliable. Rates above 192 kHz (e.g., 1411200 Hz) appear reliable based on testing, but require further validation with `pcm_mse`.     

`-T` &lt;dct&gt;`|`&lt;fft&gt;
:    Transform type (default: dct).

`-W` &lt;vorbis&gt;`|`&lt;hanning&gt;`|`&lt;rect&gt;
:    Windowing function (default: vorbis).

`-v`
:    Verbose output.

`--help-all`
:    Show full help.

## FILES

/etc/fftrate.conf
:    System-wide configuration.

~/.asoundrc
:    User ALSA configuration (used by fftrate plugin).

## SEE ALSO

arateconf(1), fftrate(7)

## EXAMPLES

Convert a 32-bit WAV file to 192kHz, 32-bit fixed-point using FFT resampling:

    $ pcm_conv -f 192000 -b 32 -T fft -v *32bit.wav Faust_192kHz_32bit_downfft.wav
    Input file : 08-Faust - Funeral March Of A Marionette - 32bit.wav
     Samples rate    = 352800 Hz
     Channels        = 2
     Bits per sample = 32 (actual: 32, float)

    Output file: Faust_192kHz_32bit_downfft.wav
     Samples rate    = 192000 Hz
     Channels        = 2
     Bits per sample = 32 (actual: 32, fixed)

            FL      FR      
    FL      1.000   -----   
    FR      -----   1.000   

    Windows : &quot;Vorbis&quot; (37632 =&gt; 20480)
    Delay   : 107 ms
    Sync.   : ON
    Trans.  : &quot;FFT&quot;

    [|||||||||||||||||||||||||||||||||||||||||||||||||||]  99.0 %
    Ok.

    File duration  : 275.906667 sec
    Processing time: 13.305000 sec ( 4.82% of real time)   

## VERSION

1.6.3

## DATE

November 2025</code></pre></div><p><strong>Manual:</strong></p><div class="codebox"><pre><code>man ronn-format</code></pre></div><p>_https://rtomayko.github.io/ronn/ronn-format.7.html</p>]]></description>
			<author><![CDATA[dummy@example.com (igorzwx)]]></author>
			<pubDate>Fri, 05 Dec 2025 10:13:54 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=60391#p60391</guid>
		</item>
	</channel>
</rss>
