in neuron_explainer/explanations/explainer.py [0:0]
def format_activated_token(i: int, token: str) -> str:
if i == pair_coordinates[0] and i == pair_coordinates[1]:
return f"[[**{token}**]]" # from and to
if i == pair_coordinates[0]:
return f"[[{token}]]" # from
if i == pair_coordinates[1]:
return f"**{token}**" # to
return token