Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for markdown documents #210

Closed
pmeier opened this issue Nov 19, 2023 · 1 comment · Fixed by #270
Closed

Add support for markdown documents #210

pmeier opened this issue Nov 19, 2023 · 1 comment · Fixed by #270
Labels
good first issue Good for newcomers help wanted Extra attention is needed

Comments

@pmeier
Copy link
Member

pmeier commented Nov 19, 2023

Markdown is the base format for tools like Obsidian or logseq. As a user, I would like to be able to ask question about all the notes I took.

Since we already support parsing plain .txt files with

class TxtDocumentHandler(DocumentHandler):
"""Document handler for `.txt` documents."""
@classmethod
def supported_suffixes(cls) -> list[str]:
return [".txt"]

we could just rename it to PlainTextDocumentHandler and add .md to the supported suffixes.

@pmeier pmeier added help wanted Extra attention is needed good first issue Good for newcomers labels Nov 19, 2023
@paskett
Copy link
Contributor

paskett commented Jan 16, 2024

I'd like to help contribute to ragna. This seems like some low-hanging fruit as a first issue and to set up my development environment.

paskett added a commit to paskett/ragna that referenced this issue Jan 16, 2024
@pmeier pmeier linked a pull request Jan 16, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers help wanted Extra attention is needed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants