diff --git a/lib/galaxy/managers/markdown_util.py b/lib/galaxy/managers/markdown_util.py index d135c577fcaa..28792c0fc89b 100644 --- a/lib/galaxy/managers/markdown_util.py +++ b/lib/galaxy/managers/markdown_util.py @@ -485,6 +485,14 @@ def handle_dataset_as_table(self, line, hda): rval = self.handle_dataset_embedded(line, hda) return rval + def handle_dataset_as_table(self, line, hda): + # TODO: this form of the rendering doesn't do anything special with advanced + # options yet but could easily be modified in the future. show_column_headers, + # compact, title, and footer should be handled in here to bring the PDF and the + # web rendering closer. + rval = self.handle_dataset_embedded(line, hda) + return rval + def handle_history_link(self, line, history): if history: content = literal_via_fence(history.name)