We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
def read_description(file_path="README.md"): import os import re # def _encode_image(m): # assert len(m.groups()) == 3 # pre, src, post = m.groups() # src = src.rstrip().lstrip() # remote_src = os.path.join(image_root, os.path.relpath(src)) # return f'{pre}{remote_src}{post}' desc = open(file_path, encoding="utf-8").read() # remove QRCode desc = "\n".join([line for line in desc.splitlines() if line.find("QRcode") < 0]) # substitute html image # desc = re.sub(r'(<img\s+src\s*=\s*\")(./fig/[^"]+)(\")', _encode_image, desc) # substitute markdown image # desc = re.sub(r"(\!\[.*\]\()(./fig/.+)(\))", _encode_image, desc) return desc
I need to comment these code to ensure that i can install hyperTS.That's all,thanks
The text was updated successfully, but these errors were encountered:
Sorry, where is this part of the code?
Sorry, something went wrong.
In the setup.py, Line number: 50, def read_description():
#96 update setup.py
cf8a14a
Sorry, where is this part of the code? In the setup.py, Line number: 50, def read_description():
#96 (comment)
This issue has been fixed. You can try again.
It works out.
oaksharks
No branches or pull requests
I need to comment these code to ensure that i can install hyperTS.That's all,thanks
The text was updated successfully, but these errors were encountered: