Skip to content

Latest commit

 

History

History
35 lines (32 loc) · 1.22 KB

README.md

File metadata and controls

35 lines (32 loc) · 1.22 KB

Bionic Reading

This repository is inspired by original Bionic Reading project. I have implemented the basic function with .NET and ASP.NET Core which might provide a pretty cool and simple experience.

API (without s)

[POST] /getStylisedText
==========================================================
REQUEST
==========================================================
TYPE   Json
STRUCT {
           string Text
           string OutputType { MarkdownBold, MarkdownItalic, 
                               MarkdownUnderline, HtmlBold,
                               HttpItalic, HttpUnderline,
                               Customised }
           string Prefix (Optional, only valid when OuputType = Customised)
           string Suffix (Optional, only valid when OuputType = Customised)
       }
==========================================================
RETURN
==========================================================
TYPE   Json
STRUCT {
           string Text
           string OutputType { MarkdownBold, MarkdownItalic, 
                               MarkdownUnderline, HtmlBold,
                               HttpItalic, HttpUnderline,
                               Customised }
       }