Skip to content

Commit

Permalink
Implement Galaxy Markdown tag history_dataset_as_table.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Nov 6, 2023
1 parent 499fd94 commit c864cd2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/galaxy/managers/markdown_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c864cd2

Please sign in to comment.