aboutsummaryrefslogtreecommitdiff
path: root/src/mainpage.md
AgeCommit message (Collapse)Author
2020-07-02Move description of ext contents into an md file.Nick Mathewson
This way, doxygen can include it.
2020-07-02Mention that src/ext should not be edited lightly.Nick Mathewson
Closes #32661
2020-05-19doxygen: add a link to src-ref on mainpage.md.Nick Mathewson
Closes 34246.
2019-12-10Document high-level architecture goalsTaylor Yu
Create a high-level description of the long-term software architecture goals. Closes ticket 32206.
2019-12-02Merge branch 'ticket32207'Nick Mathewson
2019-11-16Topic documentation on our publish-subscribe architecture.Nick Mathewson
2019-11-15High-level documentation of configuration in Tor.Nick Mathewson
Closes ticket 32209.
2019-11-15Doxygen: rename all .dox files to end with .mdNick Mathewson
Using a standard ending here will let other tools that expect markdown understand our output here. This commit was automatically generated with: for fn in $(find src -name '*.dox'); do \ git mv "$fn" "${fn%.dox}.md"; \ done