0.1.4 ā€¢ Published 6 days ago

@yookue/typedoc-plugin-raw-content v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
6 days ago

@yookue/typedoc-plugin-raw-content

NPM version Software License NPM downloads

šŸ… Generates extra raw html contents during typedoc compilation šŸ‘

Features

āœ… Support hooking head.begin event

āœ… Support hooking head.end event

āœ… Support hooking body.begin event

āœ… Support hooking body.end event

āœ… Support hooking content.begin event

āœ… Support hooking content.end event

āœ… Support hooking sidebar.begin event

āœ… Support hooking sidebar.end event

āœ… Support hooking pageSidebar.begin event

āœ… Support hooking pageSidebar.end event

āœ… Support hooking footer.begin event

āœ… Support hooking footer.end event

Quickstart

You can install this package in your typescript project as follows:

$ npm install @yookue/typedoc-plugin-raw-content --save-dev

Enjoy your coding journey with typedoc-plugin-raw-content āœŒļø

Usage

  • Using in command line
$ typedoc [TARGET] --plugin @yookue/typedoc-plugin-raw-content
  • Using in typedoc.json
{
    "plugin": [
        "@yookue/typedoc-plugin-raw-content"
    ]
}

Options

Here are the available options, specified them in typedoc.json:

Option NameValue TypeRender Event
rawHeadBeginsstring[]head.begin
rawHeadEndsstring[]head.end
rawBodyBeginsstring[]body.begin
rawBodyEndsstring[]body.end
rawContentBeginsstring[]content.begin
rawContentEndsstring[]content.end
rawSidebarBeginsstring[]sidebar.begin
rawSidebarEndsstring[]sidebar.end
rawPageSidebarBeginsstring[]pageSidebar.begin
rawPageSidebarEndsstring[]pageSidebar.end
rawFooterBeginsstring[]footer.begin
rawFooterEndsstring[]footer.end

Example

Take rawFooterEnds option as an example in typedoc.json:

{
    "hideGenerator": true,
    "rawFooterEnds": [
        "<div style='text-align: center'>Copyright &copy; 2024 Yookue Ltd. All rights reserved</div>"
    ]
}

Other options are all similar to the sample above.

Document

License

This project is under the MIT License.

Website

0.1.4

6 days ago

0.1.3

9 days ago

0.1.2

19 days ago

0.1.1

20 days ago

0.1.0

20 days ago