タグ付けされた質問 「org-link」

2
組織モードで画像リンクを作成する
組織モードでクリック可能な画像リンクを作成したい。これは次と同等です。 <a href="path-to-file"> <img src="path-to-image"> </a> 現在、私は、うまくインライン画像のプレビューを表示することができます[[path-to-image]]が続きますorg-toggle-inline-images。私が今やりたいのは、のサポートを追加することです[[path-to-file][path-to-image]]。 何か案は?


1
組織モードでリンクを手動で設定するにはどうすればよいですか?
したがって、私は「オートリンクモード」を作成して、Tomboy Notesやnotes.vimなどのノート作成ソフトウェアの機能をエミュレートして、ノートのタイトルとなるテキストを自動的にリンクするようにしています。しかし、私はEmacsとElispにまったく新しいです。これは私がこれまで持ってきたものです(これは私がこれまで書いた最初のelispのようなもので、優しくしてください)。 ;; Set directory of files to search for *.org files (setq autolinks-mode-dir "~/Dropbox/Org/") ;; Get all .org files in this directory. (setq autolinks-mode-files (directory-files autolinks-mode-dir t "[.]org\\'")) ;; Convert it to a list of just the filenames, without paths. (setq autolinks-mode-files-bare (mapcar 'file-name-nondirectory autolinks-mode-files)) ;; Strip extensions (setq …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.