![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/doc/renaissance-doc/examples/Examples/ |
Upload File : |
Editing .gsmarkup files using Emacs ----------------------------------- 1. Add to your .emacs code to have it switch to xml-mode (or sgml-mode if you don't have xml-mode) when opening a .gsmarkup file: (add-to-list 'auto-mode-alist '("\\.gsmarkup$" . xml-mode)) 2. When you are editing a .gsmarkup file, you can have the gsmarkup.dtd automatically used by emacs to perform validation (and other xml editing helper functions). To get this result, you need to provide the path to the gsmarkup.dtd file. In practice, temporarily replace the line <!DOCTYPE gsmarkup> at the beginning of your .gsmarkup file with the line <!DOCTYPE gsmarkup SYSTEM "../Documentation/gsmarkup.dtd"> Then select 'DTD/Parse DTD' from the menu. (to validate, you can then use 'SGML/Validate' from the menu; other xml editing functions should be available too).