#! /usr/bin/env python # Copyright 2024 Tomas Brabec # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. try: import locale locale.setlocale(locale.LC_ALL, '') except: pass import docutils.io import docutils.core source = ''' My title ======== 1st paragraph 2nd paragraph - a - b ''' # using string input and output pub = docutils.core.Publisher(source_class=docutils.io.StringInput, destination_class=docutils.io.StringOutput) reader_name='standalone' parser_name='restructuredtext' writer_name='html' pub.set_components(reader_name, parser_name, writer_name) settings = pub.get_settings(); # populates the publisher default settings (from individual components) pub.set_source(source=source, source_path=''); # assign input source output = pub.publish() print(output)