Compare commits

..

2 Commits

Author SHA1 Message Date
5032672341 Add opensearch.xml to gitignore 2025-05-09 10:03:39 -05:00
eec2d36526 Fixes before testing & deploying 2025-05-09 10:01:56 -05:00
2 changed files with 2 additions and 8 deletions

1
.gitignore vendored
View File

@ -6,6 +6,7 @@ yarn-debug.log*
yarn-error.log* yarn-error.log*
pnpm-debug.log* pnpm-debug.log*
lerna-debug.log* lerna-debug.log*
public/opensearch.xml
node_modules node_modules
dist dist

View File

@ -79,15 +79,8 @@ def main():
except Exception as e: except Exception as e:
print(f"Error reading file {selected_file}: {e}") print(f"Error reading file {selected_file}: {e}")
markdown_text = '\n'.join(markdown_lines)
# Write markdown to file
output_file = 'output.md'
with open(output_file, 'w', encoding='utf-8') as f:
f.write(markdown_text)
print(f"\nMarkdown file '{output_file}' has been generated.")
# Copy markdown content to clipboard # Copy markdown content to clipboard
markdown_text = '\n'.join(markdown_lines)
pyperclip.copy(markdown_text) pyperclip.copy(markdown_text)
print("Markdown content has been copied to the clipboard.") print("Markdown content has been copied to the clipboard.")