going-flying.com gemini git repository
4f4680b7eff29f29d81e871dfdc237d6253624d5 - Matthew Ernisse - 1612579365
I wondered why the page looked funny...
diff --git a/cgi-bin/converter b/cgi-bin/converter index 1c2f007..a56513d 100755 --- a/cgi-bin/converter +++ b/cgi-bin/converter @@ -126,8 +126,7 @@ def result_table(cgi, input, b, d, h): response = cgi.Response.Ok('text/gemini') response.print_header() - output = '```\n' - output += f'# Input\n{input}\n\n' + output = f'# Input\n{input}\n\n' output += f'## Binary Representation\n{b}\n\n' output += f'## Decimal Representation\n{d}\n\n' output += f'## Hexadecimal Representation\n0x{h}\n\n'