Skip to content

Latest commit

 

History

History
executable file
·
65 lines (50 loc) · 2.46 KB

README.md

File metadata and controls

executable file
·
65 lines (50 loc) · 2.46 KB

Angular Zawgyi to Unicode Converter

======= A simple AngularJS filter that changes from Zawgyi font input values to Unicode values.

ဇော်ဂျီဖောင့် ဖြင့်ရေးသားထားသော input values များကို unicode values အဖြစ် Database တွင် အလွယ်တကူ သိမ်းဆည်းနိုင်ပါသည်။ database တွင် သိမ်းဆည်းထားသော Zawgyi font များကိုလည်း view section မှာ Unicode font အဖြစ် ပြောင်းလဲ ဖော်ပြနိုင်ပါသည်။

How to get it ?

Manual Download

Download the from here

Bower

bower install ng-z2u-converter

Usage

  1. Add ng-z2u.min.js to your main file (index.html)
<script type="text/javascript" src="bower_components/ng-z2u-converter/dist/ng-z2u.min.js"></script>
  1. Set ngZ2UConverter as a dependency in your module
var myapp = angular.module('myapp', ['ngZ2UConverter'])
  1. Use the filter by passing it zawgyi text[View].
<span>{{zawgyiText | convertToUnicode}}</span>
  1. You can also use in controller[Controller]
angular.controller('ApplicationController', function($scope, $filter) {//GLOBAL FILTER

  var vm = this;
  vm.name = "Converter Application";
  vm.zawgyiText = "ျမန္မာယူနီကုဒ္ႏွင့္ ပါတ္သက္ေသာ သတင္းမ်ား၊ ေဆာင္းပါးမ်ားႏွင့္ ျမန္မာယူနီကုဒ္ဧရိယာ အဖြဲ႕၏ လႈပ္ရွား ေဆာင္ရြက္မႈမ်ားကို www.mmunicode.org တြင္ တင္ျပေပးသြားမွာ ျဖစ္ပါတယ္။";
  vm.filterByController = function(){
    vm.filterByContrlResult = $filter('convertToUnicode')(vm.zawgyiText);
  }

});

Examples

You can see in example folder.

Credits

This project is currently referenced by http://www.mcfmyanmar.org/myanmar-unicode-converter/. All senior developers who developed font converter. Ko Saturngod.