This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Reply to Weissman 2024 | |
# | |
# Code to draw the spatial locations of source-linked infections and | |
# secondary++ infections, and estimate median distance to the source (origin) | |
# | |
# Updates: | |
# ======== | |
# | |
# This TOY MODEL is just meant to rebut Weissman's claim that |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Jekyll | |
class TagCloudTag < Liquid::Tag | |
safe = true | |
def initialize(tag_name, text, tokens) | |
super | |
end | |
def render(context) | |
html = "" |