This is a collection of code used by Tangent that has been made open source. This is currently a very limited selection that will start to open up as Tangent's publishing aspirations become solidified.
Not all of Tangent and its related projects will be open source, but subsets that will empower the community will be made so.
- tangent-html-to-markdown – The parser used to convert
text/html
clipboard data to Tangent-specific markdown text.
As this repository is the public face of Tangent on GitHub, its issue tracking will serve as the primary way to track issues for the application as well as any of the actual packages in this repository.
When reporting issues for Tangent itself, be sure to use the "Tangent App" label to differentiate the issue from others. https://github.com/suchnsuch/tangent-public/labels/Tangent%20App
When reporting issues, please include:
- The version of the relevant app / package.
- A concise description in the title of the problem.
- e.g. "Clicking the New Note button does not create a new note"
- A thorough description of the problem in the body of the issue.
- The steps required to cause the problem.
- For example:
- "Open a blank workspace"
- "Click the New Note button"
- "Notice that a new note is not created"
- For example:
- Include any additional details or context that can help illuminate the issue.
- The steps required to cause the problem.
- Logs can sometimes be very helpful in sussing out a problem.
- In-window logs can be found from the developer console. You can open this with
Cmd+Option+I
on Mac orCtrl+Shift+I
on Windows and Linux. Attaching a screenshot or the contents of these logs can be useful. - Application logs can be found in the relevant log folder on your system. You can invoke the "Show Logs" command from the Command Palette in Tangent (
Cmd/Ctrl+P
to open the palette) to bring you directly to the logs.
- In-window logs can be found from the developer console. You can open this with