mirror of
https://git.zx2c4.com/cgit
synced 2025-07-22 11:54:23 +02:00
ui-shared: add cgit_tag_link()
This function can be used to generate properly escaped links to the tag page. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
8b5fc6de03
commit
cf61ad411c
2 changed files with 8 additions and 0 deletions
|
@ -262,6 +262,12 @@ void cgit_summary_link(char *name, char *title, char *class, char *head)
|
|||
reporevlink(NULL, name, title, class, head, NULL, NULL);
|
||||
}
|
||||
|
||||
void cgit_tag_link(char *name, char *title, char *class, char *head,
|
||||
char *rev)
|
||||
{
|
||||
reporevlink("tag", name, title, class, head, rev, NULL);
|
||||
}
|
||||
|
||||
void cgit_tree_link(char *name, char *title, char *class, char *head,
|
||||
char *rev, char *path)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue