This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'*** Markdown formatter for Libre(open)Office **** | |
' (pre-alpha-demo) | |
' Author: Jeka [email protected] | |
' License: No any warranties blah blah blah... | |
' Send me real postcard if you Like to use it | |
' | |
' Features: format headers verbatim blocks and formulas | |
' according to Markdown syntax | |
' | |
' Install: Open Tools->Macros->Organize Macros->LibreOffice Basic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.jekamax.utils; | |
import java.lang.reflect.Field; | |
import java.util.Collection; | |
import java.util.HashSet; | |
import java.util.Set; | |
import java.util.TreeSet; | |
import java.util.logging.Level; | |
import java.util.logging.Logger; |