Like PHP's htmlentities()/htmlspecialchars() functions, JavaScript is easy to implement it.
/**
<NotepadPlus> | |
<UserLang name="Markdown" ext="md markdown" udlVersion="2.1"> | |
<Settings> | |
<Global caseIgnored="yes" allowFoldOfComments="no" foldCompact="no" forcePureLC="2" decimalSeparator="0" /> | |
<Prefix Keywords1="yes" Keywords2="yes" Keywords3="yes" Keywords4="yes" Keywords5="yes" Keywords6="no" Keywords7="no" Keywords8="no" /> | |
</Settings> | |
<KeywordLists> | |
<Keywords name="Comments">00# 01 02((EOL)) 03<!-- 04--></Keywords> | |
<Keywords name="Numbers, prefix1"></Keywords> | |
<Keywords name="Numbers, prefix2"></Keywords> |
Like PHP's htmlentities()/htmlspecialchars() functions, JavaScript is easy to implement it.
/**
/* | |
Copyright (c) 2017 Chris Patuzzo | |
https://twitter.com/chrispatuzzo | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
//CSS | |
// file version v1.0 "2019-07-11T19:04:35.266Z" | |
// es6 | |
const dec2hex = (r, g, b) => `#${(+r).toString(16).padStart(2,"0")}${(+g).toString(16).padStart(2,"0")}${(+b).toString(16).padStart(2,"0")}`; | |
// es5 | |
function dec2hex (r, g, b) { | |
return "#" | |
+ (+r).toString(16).padStart(2, "0") |
{ | |
"AL": "Alabama", | |
"AK": "Alaska", | |
"AS": "American Samoa", | |
"AZ": "Arizona", | |
"AR": "Arkansas", | |
"CA": "California", | |
"CO": "Colorado", | |
"CT": "Connecticut", | |
"DE": "Delaware", |
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | |
<head> | |
<meta charset="UTF-8"/> | |
<title>TITLE</title> | |
<meta name="description" content="$DESCRIPTION"/> | |
<meta name="author" content="$AUTHOR"/> |
#Uninstall 3D Builder | |
Get-AppxPackage *3dbuilder* | Remove-AppxPackage | |
#Uninstall Alarms and Clock | |
Get-AppxPackage *windowsalarms* | Remove-AppxPackage | |
#Uninstall Calculator | |
Get-AppxPackage *windowscalculator* | Remove-AppxPackage | |
#Uninstall Calendar and Mail: |