Gathering detailed insights and metrics for @3yaa3yaa/markdowntextbox
Gathering detailed insights and metrics for @3yaa3yaa/markdowntextbox
Gathering detailed insights and metrics for @3yaa3yaa/markdowntextbox
Gathering detailed insights and metrics for @3yaa3yaa/markdowntextbox
npm install @3yaa3yaa/markdowntextbox
Typescript
Module System
Node Version
NPM Version
HTML (57.19%)
JavaScript (42.81%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
57 Commits
1 Watchers
2 Branches
1 Contributors
Updated on Dec 17, 2019
Latest Version
0.4.0
Package Id
@3yaa3yaa/markdowntextbox@0.4.0
Unpacked Size
15.58 kB
Size
5.48 kB
File Count
4
NPM Version
6.12.1
Node Version
12.13.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
This is a react component of markdown text box. This software is released under the MIT License, see LICENSE.txt.
import { MarkdownTextBox } from '@3yaa3yaa/markdowntextbox';
...
render()
{
return <MarkdownTextBox value={textdata}
reservedItems={ArrayOfAnyReservedCharacter}
onChange={(e)=>this.onChangeHandler(e)}
focus=true //or false
textAreaStyle={{height:"500px",fontFamily:"sans-serif", fontSize:"100%"}} //Custom style for textarea
/>
}
You can add custom behaviour to a certain reserved character.
Create an array of objects that has following elements and pass it to <MarkDownTextBox reservedItems={here}/>
class Reserved
{
constructor(keyword, stopwords, behaviour, description)
{
this.keyword = keyword; //string
this.stopwords = stopwords; //string array
this.behaviour = behaviour; //callback that receives an item that is surrounded by keyword and stopword
this.description = description; //breaf explanation of this item
}
}
You can get the above class by importing this library as below.
import { Reserved } from '@3yaa3yaa/markdowntextbox'
For example,
#
["", "\n"]
(node)=>{return <strong>{node}</strong>}
and you got a text "aaa #bbb ccc" Then you will get "aaa bbb ccc"
In the project directory, you can run:
npm test
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
npm run build
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 0/11 approved changesets -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More