aboutsummaryrefslogtreecommitdiff
path: root/src/mainpage.md
AgeCommit message (Collapse)Author
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