是否可以将pandoc中的所有表转换为pipe_tables?我可以将所有表转换为网格,但不是所有表都转换为管道。
pandoc -t markdown-pipe_tables-simple_tables-multiline_tables
Run Code Online (Sandbox Code Playgroud)
网格中所有表格的结果。
但当我这样做时
pandoc -t markdown-grid_tables-simple_tables-multiline_tables
Run Code Online (Sandbox Code Playgroud)
它会在 html 表中生成所有无管道表。
所以这是我的GUI,你可以看到.
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.JButton;
import javax.swing.JLabel;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class Frame1 {
private JFrame frame;
private JTextField textFieldnum1;
private JTextField textFieldnum2;
private JTextField textFieldAns;
private Termostat thermo;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Frame1 window = new Frame1();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public Frame1() {
initialize();
}
private void initialize() {
thermo = new Termostat();
frame = …Run Code Online (Sandbox Code Playgroud)