Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Started tags infrastructure
new file: scripts/add_tags.py modified: scripts/functions.py new file: tags/initial_tags new file: tags/tags
- Loading branch information
Showing
4 changed files
with
3,150 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from functions import * | ||
|
||
path = get_path() | ||
|
||
tags = get_tags(path) | ||
|
||
new_tags = get_new_tags(path, tags) | ||
|
||
print "Writing ", | ||
print len(new_tags), | ||
print " new tags." | ||
|
||
write_new_tags(path, new_tags) |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# List of current tags in the stacks project | ||
# Each line is of the form | ||
# tag,full_label | ||
# where full label is the label as it occurs in book.tex | ||
# this means that if you see a line | ||
# \label{lemma-separated} | ||
# in the file schemes.tex then the full_label is | ||
# schemes-lemma-separated | ||
0000,introduction-section-phantom |
Oops, something went wrong.