mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-06 04:35:00 +00:00
test: add fname_to_url tests for Unix, Windows, and edge cases
This commit is contained in:
parent
67d538a499
commit
671f3078c1
2 changed files with 41 additions and 7 deletions
|
@ -57,24 +57,24 @@ def fname_to_url(filepath):
|
|||
return "" # 'website' not found in the path
|
||||
|
||||
# Extract the part of the path starting from 'website'
|
||||
relevant_parts = parts[website_index + 1 :]
|
||||
relevant_parts = parts[website_index + 1:]
|
||||
|
||||
# Handle _includes directory
|
||||
if relevant_parts and relevant_parts[0] == "_includes":
|
||||
return ""
|
||||
|
||||
# Join the remaining parts
|
||||
url_path = "/".join(relevant_parts)
|
||||
url_path = '/'.join(relevant_parts)
|
||||
|
||||
# Handle index.md and other .md files
|
||||
if url_path.endswith(index):
|
||||
url_path = url_path[: -len(index)]
|
||||
url_path = url_path[:-len(index)]
|
||||
elif url_path.endswith(md):
|
||||
url_path = url_path[: -len(md)] + ".html"
|
||||
url_path = url_path[:-len(md)] + ".html"
|
||||
|
||||
# Ensure the URL starts and ends with '/'
|
||||
url_path = url_path.strip("/")
|
||||
|
||||
url_path = url_path.strip('/')
|
||||
|
||||
return f"https://aider.chat/{url_path}"
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue