GithubHelp home page GithubHelp logo

Copy As RTF about notepad2 HOT 7 CLOSED

zufuliu avatar zufuliu commented on May 19, 2024 1
Copy As RTF

from notepad2.

Comments (7)

zufuliu avatar zufuliu commented on May 19, 2024

This also listed in http://www.flos-freeware.ch/development-releases/notepad2-FAQs.html#planned-features

from notepad2.

zufuliu avatar zufuliu commented on May 19, 2024

Related issues:

from notepad2.

zufuliu avatar zufuliu commented on May 19, 2024

Add issue #592 to track Export as HTML, RTF, PDF, LaTeX and XML.

from notepad2.

zufuliu avatar zufuliu commented on May 19, 2024

Implemented by b718d0d (however not works well for dark theme), feel free to test latest builds from main branch.

from notepad2.

zufuliu avatar zufuliu commented on May 19, 2024

Support for default background color (e.g. dark theme) implemented by f60dd40.

from notepad2.

zufuliu avatar zufuliu commented on May 19, 2024

I think this feature is completed, screenshot for "Copy as RTF" pasted into LibreOffice Writer and WordPad:

def patch_vc_project_file(path, src_lang, language):
with open(path, encoding='utf-8', newline='\n') as fd:
doc = fd.read()
# change output folder
doc = doc.replace(f'\\{src_lang}\\', f'\\{language}\\')
# change project GUID
guid = get_project_guid()
doc = re.sub(r'(<ProjectGuid>)(.+)(</ProjectGuid>)', r'\1' + guid + r'\3', doc)
with open(path, 'w', encoding='utf-8', newline='\n') as fd:
fd.write(doc)

CopyAsRTF

from notepad2.

zufuliu avatar zufuliu commented on May 19, 2024

eolfilled is implemented by 294b71b, only overline remains unimplemented (no RTF equivalent).

image

from notepad2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.