mirror of
https://github.com/torproject/webwml.git
synced 2024-12-17 15:27:26 +00:00
21 lines
316 B
Plaintext
21 lines
316 B
Plaintext
## translation metadata
|
|
# Revision: $Revision$
|
|
|
|
#include "head.wmi" TITLE="manpage"
|
|
|
|
<div class="main-column">
|
|
|
|
<:
|
|
my $man = `man2html -M '' $(TORCVSSTABLE)/doc/tor.1.in`;
|
|
die "No manpage" unless $man;
|
|
|
|
$man =~ s,.*<body>,,is;
|
|
$man =~ s,</body>.*,,is;
|
|
|
|
print $man;
|
|
:>
|
|
|
|
</div><!-- #main -->
|
|
|
|
#include <foot.wmi>
|