reddit-0.1.0.0: Library for interfacing with Reddit's API

Safe HaskellNone
LanguageHaskell2010

Reddit.Actions.Wiki

Description

Contains subreddit wiki-related actions.

Synopsis

Documentation

getWikiPage :: MonadIO m => SubredditName -> Text -> RedditT m WikiPage Source

Get the specified wiki page on a particular subreddit. Requires permission to view the specified wiki page.

editWikiPage Source

Arguments

:: MonadIO m 
=> SubredditName

Subreddit whose wiki to modify

-> Text

The name of the page you're editing

-> Text

The new markdown content of the page you're editing

-> Text

The reason for the edit

-> RedditT m () 

Edit the specified wiki page on a particular subreddit. Requires permission to edit the specified wiki page.