aitjcize / cppman

C++ 98/11/14 manual pages for Linux/MacOS
GNU General Public License v3.0
1.27k stars 79 forks source link

Fix: improved title parsing of cppreference.com #102

Closed SGSSGene closed 5 years ago

SGSSGene commented 5 years ago

Some titles werne't correctly parsed, e.g.: "std::vector::begin, std::vector::cbegin" would create two titles:

  1. std::vector::begin
  2. std::vector:: std::vector::cbegin

clearly the naming for cbegin is wrong.

This commit fixes this and some related parsing issues. It also includes an updated index.db without these problems.

aitjcize commented 5 years ago

Thanks for the great work :)