Revision 77268a80127c2bbf61ec7e586d1e82e175cf773e authored by Hélio Guilherme on 11 August 2021, 01:25:24 UTC, committed by GitHub on 11 August 2021, 01:25:24 UTC
1 parent 0a1cff1
Raw File
mkhtml.py
from robotide.version import VERSION
import docutils.core

docutils.core.publish_file(
    source_path="../doc/releasenotes/ride-"+VERSION+".rst",
    destination_path="../src/robotide/application/release_notes.html",
    writer_name="html")

print("Now paste content of ../src/robotide/application/release_notes.html to"
      " RELEASE_NOTES in ../src/robotide/application/releasenotes.py")
back to top