Skip to content

Commit 13310e2

Browse files
committed
Add Title and display in TOC
Reformat the list at the top of each page to be an asterisk list and to make the labels bold. Add the RFC and Title headers and tweak the names of the others. Add an h2 line for the title to the template and make all other headers h2. Remove the redundant anchor IDs. Teach `generate-book.py` to read the title from the files and use it in the TOC. Fall back on the file name if no title can be found.
1 parent 9148d69 commit 13310e2

File tree

4 files changed

+38
-28
lines changed

4 files changed

+38
-28
lines changed

0000-template.md

+17-22
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
1-
- Slug: (fill me in with a unique slug, `my_awesome_feature`)
2-
- Start Date: (fill me in with today's date, YYYY-MM-DD)
3-
- Status: Proposed Standard (May be "Proposed", "Draft", "Standard")
4-
- RFC PR: [pgxn/rfcs#0000](https://github.com/pgxn/rfcs/pull/0000)
5-
- PGXN Issue: [pgxn/repo#0000](https://github.com/pgxn/repo/issues/0000)
1+
* **RFC:** 0000 (fill in with pull request number)
2+
* **Title:** (fill me in with unique name, My Awesome Feature)
3+
* **Slug:** (fill me in with a unique slug, `my_awesome_feature`)
4+
* **Start Date:** (fill me in with today's date, YYYY-MM-DD)
5+
* **Status:** Proposed Standard (May be "Proposed", "Draft", "Standard")
6+
* **Pull Request:** [pgxn/rfcs#0000](https://github.com/pgxn/rfcs/pull/0000)
7+
* **Implementation Issue:** [pgxn/repo#0000](https://github.com/pgxn/repo/issues/0000)
68

7-
# Abstract
8-
[abstract]: #abstract
9+
# RFC--0000 --- [Fill In Title]
10+
11+
## Abstract
912

1013
One paragraph explanation of the feature.
1114

12-
# Introduction
13-
[introduction]: #introduction
15+
## Introduction
1416

1517
Background and purpose. Why are we doing this? What use cases does it support?
1618
What is the expected outcome?
1719

18-
# Guide-level explanation
19-
[guide-level-explanation]: #guide-level-explanation
20+
## Guide-level explanation
2021

2122
Explain the proposal as if it already existed and you were teaching it to
2223
another extension developer. That generally means:
@@ -34,7 +35,6 @@ another extension developer. That generally means:
3435
extension packages.
3536

3637
# Reference-level explanation
37-
[reference-level-explanation]: #reference-level-explanation
3838

3939
This is the technical portion of the RFC. Explain the design in sufficient
4040
detail that:
@@ -46,21 +46,18 @@ detail that:
4646
The section should return to the examples given in the previous section, and
4747
explain more fully how the detailed proposal makes those examples work.
4848

49-
# Drawbacks
50-
[drawbacks]: #drawbacks
49+
## Drawbacks
5150

5251
Why should we *not* do this?
5352

54-
# Rationale and alternatives
55-
[rationale-and-alternatives]: #rationale-and-alternatives
53+
## Rationale and alternatives
5654

5755
* Why is this design the best in the space of possible designs?
5856
* What other designs have been considered and what is the rationale for not
5957
choosing them?
6058
* What is the impact of not doing this?
6159

62-
# Prior art
63-
[prior-art]: #prior-art
60+
## Prior art
6461

6562
Discuss prior art, both the good and the bad, in relation to this proposal. A
6663
few examples of what this can include are:
@@ -81,8 +78,7 @@ picture. If there is no prior art, that is fine --- your ideas are interesting
8178
to us whether they are brand new or if it is an adaptation from other
8279
packaging and distribution systems.
8380

84-
# Unresolved questions
85-
[unresolved-questions]: #unresolved-questions
81+
## Unresolved questions
8682

8783
* What parts of the design do you expect to resolve through the RFC process
8884
before this gets merged?
@@ -92,8 +88,7 @@ packaging and distribution systems.
9288
be addressed in the future independently of the solution that comes out
9389
of this RFC?
9490

95-
# Future possibilities
96-
[future-possibilities]: #future-possibilities
91+
## Future possibilities
9792

9893
Think about what the natural extension and evolution of your proposal would be
9994
and how it would affect the ecosystem and project as a whole in a holistic

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
src/SUMMARY.md: README.md text/*.md
1+
src/SUMMARY.md: generate-book.py README.md text/*.md
22
@./generate-book.py
33

44
run: src/SUMMARY.md
55
@mdbook serve --open
6+
7+
clean: src book
8+
rm -rf $^

generate-book.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,9 @@ def collect(summary, path, depth):
5252
for entry in entries:
5353
indent = ' '*depth
5454
name = entry.name[:-3]
55+
title = read_title(entry)
5556
link_path = entry.path[5:]
56-
summary.write(f'{indent}- [{name}]({link_path})\n')
57+
summary.write(f'{indent}* [{title}]({link_path})\n')
5758
maybe_subdir = os.path.join(path, name)
5859
if os.path.isdir(maybe_subdir):
5960
collect(summary, maybe_subdir, depth+1)
@@ -62,5 +63,14 @@ def symlink(src, dst):
6263
if not os.path.exists(dst):
6364
os.symlink(src, dst)
6465

66+
def read_title(entry):
67+
name = entry.name[:-3]
68+
with open(entry.path, 'r') as rfc:
69+
lines = rfc.readlines()
70+
for line in lines:
71+
if line.startswith('* **Title:** '):
72+
return name[:4] + " " + line.removeprefix('* **Title:** ').strip()
73+
name
74+
6575
if __name__ == '__main__':
6676
main()

text/0001-meta-spec-v1.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
- Slug: `meta-spec`
2-
- Start Date: 2010-08-17
3-
- Status: Standard
4-
- RFC PR: [pgxn/rfcs#0001](https://github.com/pgxn/rfcs/pull/1)
1+
* **RFC:** 1
2+
* **Title:** PGXN Meta Spec
3+
* **Slug:** `meta-spec`
4+
* **Start Date:** 2010-08-17
5+
* **Status:** Standard
6+
* **Pull Request:** [pgxn/rfcs#1](https://github.com/pgxn/rfcs/pull/1)
57

68
Name
79
====

0 commit comments

Comments
 (0)