# HG changeset patch # User Paul Boddie # Date 1673799021 -3600 # Node ID ede2ba8cd515169e26a5cf094ad2bf35004f3e5c # Parent 4c7049736a29e5498159951a028a6435b121d036 Attempted to fix the table continuation output issue in a less invasive way. diff -r 4c7049736a29 -r ede2ba8cd515 docs/wiki/Downloads --- a/docs/wiki/Downloads Mon Dec 12 00:38:07 2022 +0100 +++ b/docs/wiki/Downloads Sun Jan 15 17:10:21 2023 +0100 @@ -44,10 +44,10 @@ '''Release''' || '''Details''' == 0.2 || [[https://hg.boddie.org.uk/MoinLight/rev/rel-0-2|changeset]] - .. \_ [[https://hg.boddie.org.uk/MoinLight/file/rel-0-2|files]] + .. [[https://hg.boddie.org.uk/MoinLight/file/rel-0-2|files]] == 0.1 || [[https://hg.boddie.org.uk/MoinLight/rev/rel-0-1|changeset]] - .. \_ [[https://hg.boddie.org.uk/MoinLight/file/rel-0-1|files]] + .. [[https://hg.boddie.org.uk/MoinLight/file/rel-0-1|files]] }}} Details of changes introduced in each new release can be found in the diff -r 4c7049736a29 -r ede2ba8cd515 moinformat/serialisers/html/table.py --- a/moinformat/serialisers/html/table.py Mon Dec 12 00:38:07 2022 +0100 +++ b/moinformat/serialisers/html/table.py Sun Jan 15 17:10:21 2023 +0100 @@ -3,7 +3,7 @@ """ HTML serialiser. -Copyright (C) 2017, 2018, 2021 Paul Boddie +Copyright (C) 2017, 2018, 2021, 2023 Paul Boddie This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -29,7 +29,7 @@ input_formats = ["table"] def continuation(self, text): - pass + self.out(" ") serialiser = HTMLTableSerialiser