1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // CMAttributedStringRenderer.h
- // CocoaMarkdown
- //
- // Created by Indragie on 1/14/15.
- // Copyright (c) 2015 Indragie Karunaratne. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class CMDocument;
- @class CMTextAttributes;
- @protocol CMHTMLElementTransformer;
- /**
- * Renders an attributed string from a Markdown document
- */
- @interface CMAttributedStringRenderer : NSObject
- /**
- * Designated initializer.
- *
- * @param document A Markdown document.
- * @param attributes Attributes used to style the string.
- *
- * @return An initialized instance of the receiver.
- */
- - (instancetype)initWithDocument:(CMDocument *)document attributes:(CMTextAttributes *)attributes;
- /**
- * Registers a handler to transform HTML elements.
- *
- * Only a single transformer can be registered for an element. If a transformer
- * is already registered for an element, it will be replaced.
- *
- * @param transformer The transformer to register.
- */
- - (void)registerHTMLElementTransformer:(id<CMHTMLElementTransformer>)transformer;
- /**
- * Renders an attributed string from the Markdown document.
- *
- * @return An attributed string containing the contents of the Markdown document,
- * styled using the attributes set on the receiver.
- */
- - (NSAttributedString *)render;
- @end
|