Welcome to the help and documentation for the markdown editor! This document comtains everything that you need to know to use it efficiently.
- Change the current search directory
- Create and Delete files and folders in the current search directory
- Perform full text search (FTS) using a search query of the format :
/path/to/directory?search_keyword
Some text... Some code:
#!/media/aakash/active/_axnet-latest/_git.rxiv/termd/pyvenv_3.10.12/bin/python
###################
# TERM.D #
###################
from mlmaid import install
install(script_path=__file__, python_version='3.10.12')
import numpy as np
import textual
import argparse
from textual.app import App, ComposeResult
from textual.containers import ScrollableContainer
from textual.widgets import Button, Footer, Header, Static, Label, ListItem, ListView, TextArea
from PIL import Image as PILImage # pillow==latest
import io, base64, subprocess, os, hashlib, shutil
import requests
import cairosvg
from textual.app import App, ComposeResult
from textual_image.widget import Image
# https://github.com/lnqs/textual-image
class logger():
def __init__(self):
# Create an empty log file, if already exists, delete it
if os.path.isfile('.logs'):
os.remove('.logs')
#self.log_file = open('.logs', 'w')
def log(self, *args)-> None:
log_string = ''.join([str(_arg) for _arg in args])
with open('.logs', 'a+') as log_file:
log_file.writelines([log_string + '\n' + '-'*5 + '\n',])
Testing Block Latex: $$ \int x dx $$
Testing Inline Latex :
Testing mermaid diagrams:
graph TD;
A[Start]-->B[Finish];
Some text
Some text
Some text